blob: e939853197240ccfc20d58693c938aa2385c89a0 [file] [log] [blame]
class StaticThisTest extends GroovyTestCase {
void testThisFail() {
staticMethod()
}
static staticMethod() {
foo = this
assert foo != null
assert foo.name.endsWith("StaticThisTest")
println("this: " + this)
s = super
assert s != null
assert s.name.endsWith("GroovyTestCase")
println("super: " + super)
}
}