我有一个域,其中有两个字段可以为空,但不能同时为空。所以像这样
class Character {
Association association
String otherAssociation
static constraints = {
association (validator: {val, obj-> if (!val && !obj.otherAssociation) return 'league.association.mustbeone'})
otherAssociation (validator: {val, obj-> if (!val && !obj.association) return 'league.association.mustbeone'})
}
}
但是当我运行如下测试时,我只会失败
void testCreateWithAssociation() {
def assoc = new Association(name:'Fake Association').save()
def assoccha = new Character(association:assoc).save()
assert assoccha
}
void testCreateWithoutAssociation() {
def cha = new Character(otherAssociation:'Fake Association').save()
assert cha
}
我究竟做错了什么?
编辑 看起来如果我将我的代码分解成这样的东西:
def assoc = new Association(name:'Fake Association')
assoc.save()
一切正常。但是现在我想知道为什么我不能像在其他测试中那样在同一行中使用 .save() 并且它可以工作。