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