我在Groovy控制台中测试了以下代码,两者都按预期失败: 第一次测试:
class TekEvent {
Date organizer
}
def tekEvent = new TekEvent(organizer: 'John Doe')
assert tekEvent.organizer == 'John Doe'
Exception thrown
org.codehaus.groovy.runtime.typehandling.GroovyCastException: Cannot cast object 'John Doe' with class 'java.lang.String' to class 'java.util.Date'
第二次测试:
class DifferentTekEvent {
String name
}
def tekEvent = new TekEvent(nameNot: 'John Doe')
assert tekEvent.nameNot == 'John Doe'
Exception thrown
groovy.lang.MissingPropertyException: No such property: nameNot for class: DifferentTekEvent
等价物在Grails中运行(即类被实例化并在单元测试中使用)但不抛出异常。例如:
@TestFor(TekEvent)
class TekEventSpec extends Specification {
void "test"() {
def tekEvent = new TekEvent(organizer: 'aasdf') //no expceptions thrown here. Why?
expect:
tekEvent.organizer == 'aasdf'
}
}
我可以知道为什么会有差异吗?感谢。
答案 0 :(得分:2)
在Grails中,Data binding在构造域类时生效。
因此不会抛出任何异常,但如果您在域实例上看到errors
属性,那么您将看到一些消息。
afaik,如果域类没有定义属性(比如'nameNot'),那么它就会忽略它。