blob: 2d3339ca58423a7b21a5bbc3d726425a591dd93e [file] [log] [blame]
class LocalFieldTest extends GroovyTestCase {
private x
void testAssert() {
/** @todo
this.x = "abc"
assert this.x == "abc"
assert this.x != "def"
*/
}
}