Grails Integrationtest - 请求对象
我正在测试一个控制器,并在那里定义了一个使用请求对象中的值的操作。
如何在集成测试中模拟请求对象?
我知道集成测试不在 Servlet 中运行,因此没有 Requestobject,但是我如何获取它?
I'm testing a controller and there I defined an action which uses a value from the requestobject.
How can I mock the request object in an integration test?
I know that integration tests don't run in an Servlet, so there is no Requestobject, but how do I obtain it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最快的事情是使用 地图强制< /a>:(
该链接还包括 Expando 示例)。
如果您需要广泛使用 Request,请尝试功能测试插件。
Quickest thing is to mock needed methods using Map coercion:
(that link also includes Expando sample).
If you need extensive Request usage, try functional-test plugin.