找不到类:org.junit.tests.AllTests - OSX
我在开始使用 JUnit 测试时遇到了一些麻烦。这应该是非常基本的。我从 JUnit.org 下载了 junit-4.8.2.jar 并将其放在我的主目录中。
如果我尝试使用以下命令在 TCSH 终端中测试我的设置:
java -cp ~/junit-4.8.2.jar org.junit.runner.JUnitCore org.junit.tests.AllTests
我收到以下输出
JUnit version 4.8.2
Could not find class: org.junit.tests.AllTests
Time: 0.003
OK (0 tests)
任何帮助将不胜感激。谢谢。
I'm having a little trouble getting started with JUnit tests. This should be pretty basic. I downloaded junit-4.8.2.jar from JUnit.org and placed it in my home directory.
If I try to test my setup in a TCSH terminal with the following command:
java -cp ~/junit-4.8.2.jar org.junit.runner.JUnitCore org.junit.tests.AllTests
I receive the following output
JUnit version 4.8.2
Could not find class: org.junit.tests.AllTests
Time: 0.003
OK (0 tests)
Any help would be greatly appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看:junit 常见问题解答 特别是此项目,将我的项目加粗:
如果您只下载了 jar,则无法运行示例测试。您需要获取 src 包并按照说明进行操作。
Check out: the junit faq specifically this item, bolding mine:
If you only downloaded the jar you can't run the sample tests. You need to get the src package and follow the instructions for that.
这是由 unixking 发布的 -
从 http://sourceforge.net/projects/junit/files 获取最新版本的 JUnit /junit/4.10/
将junit4.10.zip解压到C:\MyDev\lib,所以我们有C:\MyDev\lib\junit4.10
在命令提示符下,运行以下命令
This was posted by unixking -
Get the latest version of JUnit from http://sourceforge.net/projects/junit/files/junit/4.10/
Unzip junit4.10.zip at C:\MyDev\lib, so we have C:\MyDev\lib\junit4.10
In the command prompt, run the following commands