我在then子句中有一个带循环的测试:
result.each {
it.name.contains("foo")
it.entity.subEntity == "bar"
}
for (String obj : result2) {
obj.name.contains("foo")
obj.entity.subEntity == "bar"
}
最近我意识到循环没有真正经过测试。无论我是否有foo或bar或其他任何东西,测试总是绿色的:) 我发现,必须以不同的方式测试循环,例如与'每个'?但只是将'each'改为'every'抛出异常:
result.every {
it.name.contains("foo")
it.entity.subEntity == "bar"
}
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
Spec expression: 1: expecting '}', found '==' @ line 1, column 61.
s("foo") it.entity.rootEntity == "bar" }
我应该如何在测试中正确使用循环?我正在使用spock 0.7-groovy-2.0
答案 0 :(得分:27)
使用显式断言语句:
result.each {
assert it.name.contains("foo")
assert it.entity.subEntity == "bar"
}
或every
中的单个布尔表达式:
result.every {
it.name.contains("foo") && it.entity.subEntity == "bar"
}