使用 Powermock 时出现 NoClassDefFoundError
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我现在刚刚解决了这个问题,当我添加
@RunWith(PowerMockRunner.class)
属性时,eclipse
自动导入:我需要做的就是将其更改为
:现在它可以在
JUnit 4.8.2
上正常工作。第二个运行程序适用于使用旧版本的
JUnit
运行时 - 特别是4.3
及更旧版本。I just solved this one now, when I added the
@RunWith(PowerMockRunner.class)
attribute,eclipse
automatically imported:All I needed to do is change it to be:
And now it works fine with
JUnit 4.8.2
.The 2nd runner is for when running with older versions of
JUnit
- specifically4.3
and older.请参阅此处
See here
当您在使用 JUnit 4.X 或更高版本时导入 PowerMockRunner.class 的旧版本时,会发生此异常,因为在与 @RunWith 注释一起使用时,该旧版本无法运行。我通过用新版本替换旧版本导入解决了这个问题。
不正确的导入:
正确的导入:
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:
Correct Import:
我解决了这个问题。我使用旧版本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.
我正在使用 JUnit 4.0 - 4.3,并且我更新了我的 Maven 依赖项以使用 powermockito 2.0.0-beta.5 版本。它刚刚开始工作。
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.