单元测试 jsf 2.0 托管 Bean 的最佳方法
单元测试 JSF 2.0 托管 bean 的最有效方法是什么?我已经看到 JBoss 的 JSFUnit,但它看起来像是用于测试 Facelets 页面中的组件,而不是测试托管 bean 本身。
我想找到一种方法来有效地仅对托管 bean 进行单元测试。
有什么想法吗?
What is the most effective way of unit testing JSF 2.0 managed beans. I have seen JSFUnit from JBoss but it looks like its for testing the components in the facelets pages but not the managed beans themselves.
I want to find a way to effectively unit test only the managed beans.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置托管 bean,以便通过 setter 将它们的所有依赖项作为托管属性注入。然后,您可以在单元测试中手动注入模拟或存根。
Set up your managed beans so that all their dependencies are injected as managed properties via setters. Then you can manually inject mocks or stubs in your unit tests.
JSFUnit 是另一种选择
JSFUnit is another alternative