为什么java找不到JUnit框架?

发布于 2024-07-17 07:55:50 字数 361 浏览 5 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(1

鹿! 2024-07-24 07:55:50

您使用什么版本的 JUnit?

我认为在 JUnit 3 之前,包是不同的:

 import junit.framework.*;

此外,如果您使用 Eclipse,则可以选择要使用的 JUnit 框架。

What version of JUnit are you using?

I think that until JUnit 3, the package was different:

 import junit.framework.*;

Also, if you are using Eclipse, you can pick the JUnit framework to use.

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