为什么java找不到JUnit框架?
我正在尝试使用 JUnit 编译一个测试类,但我不明白为什么它无法编译。
我的类顶部有以下几行:
import java.util.*;
import org.junit.*;
我收到的错误是
package org.junit does not exist
JUnit.jar 当前位于 Program Files\JUnit\junit.jar 中,它当前也驻留在我的类路径中。 我正在使用 Windows Vista,如果有帮助的话。
关于如何使用 JUnit 编译这个测试类有什么想法吗?
非常感谢,
I am trying to get a test class compiling with JUnit, and I can't figure out why it will not compile.
I have the following lines at the top of my class:
import java.util.*;
import org.junit.*;
And the error I am getting is
package org.junit does not exist
JUnit.jar is currently located in Program Files\JUnit\junit.jar, which currently also resides in my class path. I am working on Windows Vista if that helps.
Any ideas on how I can compile this test class with JUnit?
Thanks very much,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用什么版本的 JUnit?
我认为在 JUnit 3 之前,包是不同的:
此外,如果您使用 Eclipse,则可以选择要使用的 JUnit 框架。
What version of JUnit are you using?
I think that until JUnit 3, the package was different:
Also, if you are using Eclipse, you can pick the JUnit framework to use.