CLI 中的 JUnit 测试等效项
我编写了某些代码,但它并没有主要方法。但我想知道代码是否有问题。基本上我可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个页面:
http://junit.sourceforge.net/doc/faq/faq.htm#running_4
要运行 JUnit 测试,您需要以下元素
您的 CLASSPATH:
如果尝试运行测试会导致 NoClassDefFoundError,
那么你的 CLASSPATH 中缺少一些东西。
Windows 示例:
调用运行器:
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:
If attempting to run your tests results in a NoClassDefFoundError,
then something is missing from your CLASSPATH.
Windows Example:
Invoke the runner:
java org.junit.runner.JUnitCore <test class name>