为什么 save 不能在 Grails 中使用模拟域?
有谁知道如何让mockDomain 在 JUnit 测试中工作?
以下测试失败:
void testRoleSave()
{
def roles = []
mockDomain(Role, roles)
Role role = new Role(authority: "baba");
role.save(flush: true, failOnError: true)
println role.errors
assertNotNull(role.id)
println role.id
assertEquals(Role.getAll().size(), 1)
//assertEquals(roles.size(), 1)
}
错误:
junit.framework.AssertionFailedError: junit.framework.AssertionFailedError: expected:<0> but was:<1>
at ....testRoleSave(ReceiveMailControllerTests.groovy:36)
Does anybody know how I can get mockDomain to work in JUnit Tests?
The following test fails:
void testRoleSave()
{
def roles = []
mockDomain(Role, roles)
Role role = new Role(authority: "baba");
role.save(flush: true, failOnError: true)
println role.errors
assertNotNull(role.id)
println role.id
assertEquals(Role.getAll().size(), 1)
//assertEquals(roles.size(), 1)
}
Error:
junit.framework.AssertionFailedError: junit.framework.AssertionFailedError: expected:<0> but was:<1>
at ....testRoleSave(ReceiveMailControllerTests.groovy:36)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Role.list() 或 Role.count() 而不是 Role.getAll()。
use Role.list() or Role.count() instead of Role.getAll().