1 46 47 package org.codehaus.groovy.classgen; 48 49 import groovy.lang.GroovyObject; 50 51 import org.codehaus.groovy.classgen.TestSupport; 52 53 58 public class ConstructorTest extends TestSupport { 59 60 public void testConstructor() throws Exception { 61 GroovyObject object = compile("src/test/groovy/NewExpressionTest.groovy"); 62 object.invokeMethod("testNewInstance", null); 63 } 64 } 65 | Popular Tags |