use of groovy.lang.GroovyObject in project groovy by apache.
the class RunBugsTest method testSuperMethod2Bug.
public void testSuperMethod2Bug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/SuperMethod2Bug.groovy");
object.invokeMethod("testBug", null);
}
use of groovy.lang.GroovyObject in project groovy by apache.
the class RunBugsTest method testClosureVariableBug.
public void testClosureVariableBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/ClosureVariableBug.groovy");
object.invokeMethod("testBug", null);
}
use of groovy.lang.GroovyObject in project groovy by apache.
the class RunClosureTest method testStaticClosureBug.
public void testStaticClosureBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/StaticClosurePropertyBug.groovy");
object.invokeMethod("testCallStaticClosure", null);
}
use of groovy.lang.GroovyObject in project groovy by apache.
the class NodePrinterTest method testSmallTree.
public void testSmallTree() throws Exception {
GroovyObject object = compile("src/test/groovy/tree/SmallTreeTest.groovy");
object.invokeMethod("testTree", null);
}
use of groovy.lang.GroovyObject in project groovy by apache.
the class NodePrinterTest method testTree.
public void testTree() throws Exception {
GroovyObject object = compile("src/test/groovy/tree/TreeTest.groovy");
object.invokeMethod("testTree", null);
}
Aggregations