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