blob: a6396076b4609e11ce7b40615fdc3869ae7d99bd [file] [log] [blame]
/**
* @version $Revision$
*/
class ChristofsPropertyBug extends GroovyTestCase {
void testChristofsPropertyBug() {
this.mixedCaseProperty = "test"
shouldFail({this.mixedcaseproperty = "test"})
}
mixedCaseProperty
getMixedCaseProperty() { mixedCaseProperty }
setMixedCaseProperty(val) { this.mixedCaseProperty = val }
}