Eclipse 中的 JUnit4

发布于 2024-08-16 14:39:29 字数 889 浏览 0 评论 0原文

我正在尝试在 Eclipse 3.5 中运行一些 JUnit 测试单元,但根本没有运气。

JUnit3 工作正常。

当我创建 JUnit4 测试单元时,Eclipse 会建议将 JUnit 库添加到类路径中。我接受,但是当我检查它是否已添加到项目的属性面板中时,我可以看到添加了 JUnit4,但没有包含 JARS。
如果我选择编辑,则组合显示“JUnit 4”,并位于“当前位置:未找到”下方。

当我启动 JUnit4 测试时,我收到一条错误消息,指出发生内部错误,NullPointerException

我已经阅读了大约两天,所有参考文献都说 eclipse INCLUDES JUnit4,但不知何故,似乎有一些东西我丢失了。

我尝试重新创建我的项目并在全新的项目中创建测试,但没有成功。

package test;

import static org.junit.Assert.*;

import org.junit.Test;

public class AuthServiceTest {

    @Test
    public final void testValidateCredentials() {
        fail("Not yet implemented"); // TODO
    }

}

[编辑]

我已将 junit-4.8.1.jar 添加到项目的类路径和 eclipse 的类路径中,但仍然存在同样的问题。

[Edit2]

我还添加了 junit-dep-4.8.1.jar,因为我不确定这些依赖项是否必要,但没有更改。

I'm trying to run some JUnit test units in Eclipse 3.5, but with no luck at all.

JUnit3 works fine.

When I create the JUnit4 Test unit, Eclipse offers to add the JUnit library to the class-path. I accept, but when I check to see if it was added in the project's properties panel, I can see JUnit4 was added, but no JARS where included.
If I choose Edit, the combo says "JUnit 4", and just below "Current location: Not Found".

When I launch a JUnit4 test, I get an error saying and internal error occurred, NullPointerException.

I've read for about two days now, and all references say eclipse INCLUDES JUnit4, but somehow, there seems to be something I'm missing.

I've tried re-creating my projects and creating a test in brand new ones with no luck.

package test;

import static org.junit.Assert.*;

import org.junit.Test;

public class AuthServiceTest {

    @Test
    public final void testValidateCredentials() {
        fail("Not yet implemented"); // TODO
    }

}

[Edit]

I've added junit-4.8.1.jar to the project's classpath, and eclipse's classpath, but still the same problem.

[Edit2]

I also added junit-dep-4.8.1.jar, since I'm not sure if these dependencies are necessary, but no change.

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

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

发布评论

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

评论(3

宫墨修音 2024-08-23 14:39:29

右键单击项目名称。

Built Path--> Add Libraries

从列表中选择适当的库(本例中为 JUnit 4)。

Right click on the project name .

Built Path--> Add Libraries

Select the appropriate library from the list (JUnit 4 in this instance) .

风情万种。 2024-08-23 14:39:29

在我的Eclipse安装中提供了JUnit 4,它位于plugins\org.junit4_4.3.1\junit.jar中,

如果你找不到它,那么我猜你可能需要下载它。

您可以将 JUnit 与

Windows->Preferences->Java->Build Path->User Libraries

“选择 JUnit”中的 Eclipse JUnit 设置相关联,并且可以添加和编辑 JAR。

In my Eclipse installation JUnit 4 is provided, it's in plugins\org.junit4_4.3.1\junit.jar

If you can't find it, then I guess that you may need to download it.

You can associate your JUnit with the Eclipse JUnit settings in

Windows->Preferences->Java->Build Path->User Libraries

Select JUnit there, and you can add and edit JARs.

胡渣熟男 2024-08-23 14:39:29

Fedora 存储库中的 Eclipse 3.5 似乎不包含 JUnit,并且安装相应的包也不包含它。
另一台 Debian PC 也出现了同样的问题。从 eclipse.org 干净地下载解决了这个问题。

在某个时候报告这个错误:)

It appears that the Eclipse 3.5 from Fedora's repository doesn't include JUnit, and installing the appropriate package didn't include it either.
Another Debian PC presented the same issue. A clean download from eclipse.org solved the problem.

I will report this bug at some point :)

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