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);
}
use of groovy.lang.GroovyObject in project groovy by apache.
the class NodePrinterTest method testClosureClassLoaderBug.
public void testClosureClassLoaderBug() throws Exception {
GroovyObject object = compile("src/test/groovy/tree/ClosureClassLoaderBug.groovy");
object.invokeMethod("testTree", null);
}
use of groovy.lang.GroovyObject in project groovy by apache.
the class NodePrinterTest method testNestedClosureBug.
public void testNestedClosureBug() throws Exception {
GroovyObject object = compile("src/test/groovy/tree/NestedClosureBugTest.groovy");
object.invokeMethod("testNestedClosureBug", null);
}
Aggregations