public void testMethodDispatchBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/MethodDispatchBug.groovy");
object.invokeMethod("testBug", null);
}
public void testClosureInClosureTest() throws Exception {
GroovyObject object = compile("src/test/groovy/ClosureInClosureTest.groovy");
object.invokeMethod("testInvisibleVariable", null);
}