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