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);
}
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);
}
Aggregations