use of groovy.lang.GroovyObject in project groovy-core by groovy.
the class RunBugsTest method testMethodDispatchBug.
public void testMethodDispatchBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/MethodDispatchBug.groovy");
object.invokeMethod("testBug", null);
}
use of groovy.lang.GroovyObject in project groovy-core by groovy.
the class RunBugsTest method testRodsBug.
public void testRodsBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/RodsBug.groovy");
object.invokeMethod("testBug", null);
}
use of groovy.lang.GroovyObject in project groovy-core by groovy.
the class RunBugsTest method testToStringBug.
public void testToStringBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/ToStringBug.groovy");
object.invokeMethod("testBug", null);
}
use of groovy.lang.GroovyObject in project groovy-core by groovy.
the class RunBugsTest method testClosureParameterPassingBug.
public void testClosureParameterPassingBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/ClosureParameterPassingBug.groovy");
object.invokeMethod("testBug", null);
}
use of groovy.lang.GroovyObject in project groovy-core by groovy.
the class RunBugsTest method testClosureVariableBug.
public void testClosureVariableBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/ClosureVariableBug.groovy");
object.invokeMethod("testBug", null);
}
Aggregations