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