如何使用 jsp 运行我的测试用例(用 junit 3.x 和 4.x 编写)?
我想运行 JSP 中以 junit 版本(3.x 和 4.x)编写的所有测试用例。如果我调用该 jsp,它应该运行所有测试用例。请指导我。
I want to run my all test cases which is written in both junit versions(3.x & 4.x) in JSP. If I called that jsp it should run all test cases. Please guide me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很奇怪,有一种方法可以做到这一点:
您可以使用
JUnitCore.runClasses(..)
,您可以在其中传递单元测试类的数组。当然,您的 jsp 中需要一个
<@% page import="org.junit.runner.JUnitCore" %>
。不过,请告诉我们您的情况,因为这看起来不太正确。至少在
Servlet
中执行此操作,而不是在 jsp 中This being odd, there is a way to do it:
You can use
JUnitCore.runClasses(..)
, where you pass an array of the classes of your unit tests.Of cours, you will need a
<@% page import="org.junit.runner.JUnitCore" %>
in your jsp.Still, tell us your scenario, because this doesn't seem quite right. At least do this in a
Servlet
, not a jsp