GroovyObject object = compile("src/test/groovy/ClosureInClosureTest.groovy");
object.invokeMethod("testInvisibleVariable", null);
}
public void testStaticMarkupBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/StaticMarkupBug.groovy");
object.invokeMethod("testBug", null);
}
public void testOverloadInvokeMethodBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/OverloadInvokeMethodBug.groovy");
object.invokeMethod("testBug", null);
}