blob: 09faa8443c2cc768bf70b717ce4d78be31616ee7 [file] [log] [blame]
class ConstructorTest extends GroovyTestCase {
public ConstructorTest() {
println "Hey"
}
public void testConstructor() {
def foo = new ConstructorTest()
assert foo != null
println foo
}
}