集成测试中的Grails响应图

时间:2013-06-19 09:56:18

标签: grails integration-testing response

我想在集成测试中获取响应映射。我有以下代码:

def myController = new MyController()
myController.params.firstParam = "test"

myController.request.method = "GET"
myController.myAction()

现在我想获得动作的响应图,但是在文档中没有显示出这样做的方法......

问候

1 个答案:

答案 0 :(得分:1)

操作的结果存储在控制器的modelAndView属性中。

Yor可以像这样访问模型:

def yourModel = myController.modelAndView.model

文档的Integration Testing部分对此进行了描述。