使用 Powermock 时出现 NoClassDefFoundError

发布于 2024-10-22 01:12:06 字数 398 浏览 1 评论 0原文

我正在使用 PowerMock 测试运行程序运行 junit 测试用例。 我使用以下命令行来执行它:

java -cp .:junit-4.9b2.jar:easymock-3.0.jar:powermock-easymock-1.4.8-full.jar org.junit.runner.JUnitCore SampleTest

这样做时,我收到此错误:

initializationError(SampleTest)
java.lang.NoClassDefFoundError: org/junit/internal/runners/TestClassRunner
...

如何修复它?

I'm running a junit test case using the PowerMock test runner.
I'm using the following command line to execute it:

java -cp .:junit-4.9b2.jar:easymock-3.0.jar:powermock-easymock-1.4.8-full.jar org.junit.runner.JUnitCore SampleTest

When doing so I am receiving this error:

initializationError(SampleTest)
java.lang.NoClassDefFoundError: org/junit/internal/runners/TestClassRunner
...

How can I fix it?

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

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

发布评论

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

评论(5

£烟消云散 2024-10-29 01:12:06

我现在刚刚解决了这个问题,当我添加 @RunWith(PowerMockRunner.class) 属性时,eclipse 自动导入:

import org.powermock.modules.junit4.legacy.PowerMockRunner;

我需要做的就是将其更改为

import org.powermock.modules.junit4.PowerMockRunner;

:现在它可以在 JUnit 4.8.2 上正常工作。

第二个运行程序适用于使用旧版本的 JUnit 运行时 - 特别是 4.3 及更旧版本。

I just solved this one now, when I added the @RunWith(PowerMockRunner.class) attribute, eclipse automatically imported:

import org.powermock.modules.junit4.legacy.PowerMockRunner;

All I needed to do is change it to be:

import org.powermock.modules.junit4.PowerMockRunner;

And now it works fine with JUnit 4.8.2.

The 2nd runner is for when running with older versions of JUnit - specifically 4.3 and older.

指尖微凉心微凉 2024-10-29 01:12:06

请参阅此处

您可能使用了错误的 PowerMockRunner。其中一个运行程序适用于 JUnit 4.4 及更高版本,第二个运行程序适用于 JUnit 4.0-4.3(尽管后者也适用于 JUnit 4.4 的某些较旧的次要版本)。
尝试从 org.powermock.modules.junit4.PowerMockRunner 切换到 org.powermock.modules.junit4.legacy.PowerMockRunner,反之亦然。请参阅入门指南,了解如何在 Maven 中进行配置。

See here

You're probably using the wrong PowerMockRunner. There's one runner made for JUnit 4.4 and above and a second runner made for JUnit 4.0-4.3 (although the latter also works for some older minor versions of JUnit 4.4).
Try switching from the org.powermock.modules.junit4.PowerMockRunner to org.powermock.modules.junit4.legacy.PowerMockRunner or vice versa. Look at the getting started guide to see how to configure this in maven.

等待圉鍢 2024-10-29 01:12:06

当您在使用 JUnit 4.X 或更高版本时导入 PowerMockRunner.class 的旧版本时,会发生此异常,因为在与 @RunWith 注释一起使用时,该旧版本无法运行。我通过用新版本替换旧版本导入解决了这个问题。

不正确的导入:

import org.powermock.modules.junit4.legacy.PowerMockRunner;

正确的导入:

import org.powermock.modules.junit4.PowerMockRunner;

This Exception occurs when you Import the legacy version of PowerMockRunner.class when using JUnit 4.X or higher version since this legacy class is not available to run when using it with @RunWith annotation. I have solved this issue by replacing older legacy version import with the new version.

Incorrect Import:

import org.powermock.modules.junit4.legacy.PowerMockRunner;

Correct Import:

import org.powermock.modules.junit4.PowerMockRunner;
遮云壑 2024-10-29 01:12:06

我解决了这个问题。我使用旧版本junit-4.0.jar。但我仍然不明白为什么缺少 TestClassRunner 类,特别是在 powermock-easymock-junit-1.4.8.zip 包中(有 junit-4.8.2.jar)? junit-4.8.2.jar 也缺少 TestClassRunner 类。

I solved the problem. I used old version junit-4.0.jar. But I still don't understand why is missing the class TestClassRunner especially in the package powermock-easymock-junit-1.4.8.zip (there is junit-4.8.2.jar)? The junit-4.8.2.jar is missing the class TestClassRunner also.

提笔落墨 2024-10-29 01:12:06

我正在使用 JUnit 4.0 - 4.3,并且我更新了我的 Maven 依赖项以使用 powermockito 2.0.0-beta.5 版本。它刚刚开始工作。

 <dependency>
    <groupId>org.powermock</groupId>
    <artifactId>powermock-module-junit4</artifactId>
    <version>2.0.0-beta.5</version>
    <scope>test</scope>
 </dependency>
 <dependency>
    <groupId>org.powermock</groupId>
    <artifactId>powermock-api-mockito2</artifactId>
    <version>2.0.0-beta.5</version>
    <scope>test</scope>
  </dependency>

I am using JUnit 4.0 - 4.3 and I updated my maven dependency to use powermockito 2.0.0-beta.5 version. It just started working.

 <dependency>
    <groupId>org.powermock</groupId>
    <artifactId>powermock-module-junit4</artifactId>
    <version>2.0.0-beta.5</version>
    <scope>test</scope>
 </dependency>
 <dependency>
    <groupId>org.powermock</groupId>
    <artifactId>powermock-api-mockito2</artifactId>
    <version>2.0.0-beta.5</version>
    <scope>test</scope>
  </dependency>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文