所以,我开始学习groovy& Grails的。我正在尝试为我的控制器编写单元测试,如下所示:
void testSave() {
params.productName = 'ProdName'
params.productBarCode = '123'
params.productStore = 'ProdStore'
def response = controller.save()
assert response.productInstance.productName == 'ProdName'
}
这是控制器动作
def save() {
def productInstance = new Product(params)
if (!productInstance.save(flush: true)) {
render(view: "create", model: [productInstance: productInstance])
return
}
flash.message = message(code: 'default.created.message', args: [message(code: 'product.label', default: 'Product'), productInstance.id])
redirect(action: "show", id: productInstance.id)
}
这是' test-app'
时抛出的例外情况groovy.lang.MissingMethodException: No signature of method: xxx.Product.save() is applicable for argument types: () values: []
Possible solutions: save(), save(boolean), save(java.util.Map), wait(), any(), wait(long)
at xxx.ProductController.save(ProductController.groovy:59)
at xxx.ProductControllerTests.testSave(ProductControllerTests.groovy:35)
如果这个问题太天真,我很抱歉。请帮忙 感谢
答案 0 :(得分:2)
在测试类中模拟域实例之前,它无法识别域类中的save()等动态方法。
在测试类的类级别使用@Mock(Product)
。