在运行单元测试的同时使用 Spring Framework 测试视图?
有没有办法在运行单元测试的同时测试 freemarker 中呈现的视图?如果 Freemarker 抛出异常,测试失败,那就太好了。
Rails 有一个功能,您可以在调用操作时渲染视图。有没有一种简单的方法来为 Spring 配置这种类型的行为?
Is there a way to test views rendered in freemarker at the same time I run my unit tests? It would be great if the test failed if Freemarker threw an exception.
Rails has a feature where you can render views whenever an action is called. Is there an easy way to configure this type of behavior for Spring too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看这篇博客文章。我们在 Velocity 模板中使用了这种方法并取得了巨大成功。看起来像此处 是一个工作代码示例。
它需要一些额外的类,例如 MockWebApplicationContextLoader,但可以很好地处理模拟请求。
Check out this blog post. We used this approach with great success for Velocity template. Looks like here is a working code example.
It requires few extra classes like
MockWebApplicationContextLoader
but works great with mocked requests.