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