blob: 776110396cb0a9b15494d01911e3181fee0ac750 [file] [log] [blame]
class PropertyWithoutDotTest extends GroovyTestCase {
getFoo() {
return "cheese"
}
void testProperty() {
value = foo
assert value == "cheese"
}
}