blob: a62f9484cc747e9cbea0c9f56776363774dddeb6 [file] [log] [blame]
class LocalFieldTest extends GroovyTestCase {
private def x
void testAssert() {
this.x = "abc"
assert this.x == "abc"
assert this.x != "def"
}
}