CLI 中的 JUnit 测试等效项

发布于 2024-12-03 23:01:33 字数 190 浏览 0 评论 0原文

我编写了某些代码,但它并没有主要方法。但我想知道代码是否有问题。基本上我可以使用 Eclipse 中的 JUnit 测试用例来完成它(我使用的是 Linux)。但我面临的情况是,我必须在目前没有 Eclipse 的 Windows 中测试它。所以我可以选择在 cmd 中执行此操作(如果可能的话)。 cmd 中的 JUnit 测试 (Eclipse) 等效项是什么?

I have written certain code which doesn't exactly have a main method. But I want to know if the code has any issues. Basically I can do it using the JUnit test case in Eclipse (I am using linux). But I am in a situation where I have to test it in Windows which currently doesn't have Eclipse. So I'm left with the option of doing it in cmd (if that is possible). What is the JUnit test (Eclipse) equivalent in cmd?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

冷…雨湿花 2024-12-10 23:01:33

看看这个页面:
http://junit.sourceforge.net/doc/faq/faq.htm#running_4

要运行 JUnit 测试,您需要以下元素
您的 CLASSPATH:

  • JUnit 类文件
  • 您的类文件,包括您的 JUnit 测试类
  • 您的类文件所依赖的库

如果尝试运行测试会导致 NoClassDefFoundError,
那么你的 CLASSPATH 中缺少一些东西。

Windows 示例:

set CLASSPATH=%JUNIT_HOME%\junit.jar;c:\myproject\classes;c:\myproject\lib\something.jar

调用运行器:

java org.junit.runner.JUnitCore

Look at this page:
http://junit.sourceforge.net/doc/faq/faq.htm#running_4

To run your JUnit tests, you'll need the following elemements in
your CLASSPATH:

  • JUnit class files
  • Your class files, including your JUnit test classes
  • Libraries your class files depend on

If attempting to run your tests results in a NoClassDefFoundError,
then something is missing from your CLASSPATH.

Windows Example:

set CLASSPATH=%JUNIT_HOME%\junit.jar;c:\myproject\classes;c:\myproject\lib\something.jar

Invoke the runner:

java org.junit.runner.JUnitCore <test class name>

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