如何使用 jsp 运行我的测试用例(用 junit 3.x 和 4.x 编写)?

发布于 2024-08-15 02:48:11 字数 76 浏览 3 评论 0原文

我想运行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

轮廓§ 2024-08-22 02:48:11

这很奇怪,有一种方法可以做到这一点:

您可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文