use of groovy.lang.GroovyObject in project groovy by apache.
the class RunBugsTest method testPrimitiveTypeFieldTest.
public void testPrimitiveTypeFieldTest() throws Exception {
GroovyObject object = compile("src/test/groovy/PrimitiveTypeFieldTest.groovy");
object.invokeMethod("testPrimitiveField", null);
}
use of groovy.lang.GroovyObject in project groovy by apache.
the class RunBugsTest method testOverloadInvokeMethodBug.
public void testOverloadInvokeMethodBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/OverloadInvokeMethodBug.groovy");
object.invokeMethod("testBug", null);
}
use of groovy.lang.GroovyObject in project groovy by apache.
the class RunBugsTest method testTryCatchBug.
public void testTryCatchBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/TryCatchBug.groovy");
object.invokeMethod("testBug", null);
}
use of groovy.lang.GroovyObject in project groovy by apache.
the class RunBugsTest method testGroovy252_Bug.
public void testGroovy252_Bug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/Groovy252_Bug.groovy");
object.invokeMethod("testBug", null);
}
use of groovy.lang.GroovyObject in project groovy by apache.
the class RunBugsTest method testClosureInClosureTest.
public void testClosureInClosureTest() throws Exception {
GroovyObject object = compile("src/test/groovy/ClosureInClosureTest.groovy");
object.invokeMethod("testInvisibleVariable", null);
}
Aggregations