如何在 Servlet 和 JSP 中使用 JUnit?
我正在编写一个 Web 应用程序,应该使用 JUnit 框架进行测试。所以请建议我如何在 Jsp 和 servlet 中使用 JUnit 以及如何使用 Ant 生成测试用例报告?提前致谢
为什么我们不能使用 Cactus?我听说过这个,它与其他测试用例有什么不同?
I am writing a web application which should be tested with JUnit framework. So please suggest me how we can use JUnit in Jsp and servlet and also how to generate test case reports using Ant?? Thanks in advance
Why cant we use Cactus? I have heard about that and what it differs from other test cases?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于servlet,我使用 spring框架模拟类 - 有模拟请求、响应、servlet上下文等。您不需要在应用程序中使用spring框架来使用它们。
关于你的第二个问题,我认为你正在寻找的是 junitreport Ant任务。这是一个示例(取自此处 ):
For servlets I use the spring framework mock classes - there are mock request, response, servlet context, etc. You do not need to use the spring framework in your application to use them.
Regarding your second question, i think what you are looking for is the junitreport Ant task. Here is a sample (taken from here):
是的,cactus是一个不错的选择。它主要用于集成测试,也可以满足单元测试。有关详细信息,您只需尝试此网站 http://jakarta.apache.org/cactus
Yes, cactus is an good option.. it is mainly for Integration testing and can also satisfy the Unit testing. For details u just try this site http://jakarta.apache.org/cactus