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