junit.framework.AssertionFailedError:在 xyz 包中找不到测试

发布于 2024-12-05 11:18:05 字数 551 浏览 0 评论 0原文

当我尝试从 ANT 任务运行 Junits 时,出现此错误。使用 eclipse 启动器它工作正常。 junit版本是4.9,ANT版本是1.7 令人惊讶的是,它给出了“junit.framework.AssertionFailedError”,这是 JUNIT 3 中的包结构。,在 4 中它已更改为 org.junit。 我交叉检查了所有库,并且没有 junit 3.* 版本的参考——而且它无论如何都使用 eclipse 启动器工作。 有什么线索吗?如果需要更多详细信息,请告诉我。 Ant任务如下

<target name="test">
  <junit fork="yes" haltonfailure="yes">
    <test name="${test.class.name}" />
    <formatter type="plain" usefile="false" />
    <classpath refid="junittest.classpath" />
  </junit>
</target>

I am getting this error when I try to run Junits from ANT task. using eclipse launcher it works fine. Version of junit is 4.9 and ANT version is 1.7
Surprisingly its giving "junit.framework.AssertionFailedError" which was package structure in JUNIT 3., in 4 it has changed to org.junit.
I cross checked all libs and there is NO reference of junit 3.* version --and its working anyway using eclipse launcher.
Any clue? Let me know if more detail is needed. Ant task is as follows

<target name="test">
  <junit fork="yes" haltonfailure="yes">
    <test name="${test.class.name}" />
    <formatter type="plain" usefile="false" />
    <classpath refid="junittest.classpath" />
  </junit>
</target>

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

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

发布评论

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

评论(1

风追烟花雨 2024-12-12 11:18:05

您应该检查 ant 正在尝试使用哪些 junit.jarant-junit.jar 并确保它们适用于 JUnit 4。请查看 http://ant.apache.org/manual/Tasks/junit.html 为最佳放置它们的地方。

You should check, which junit.jar and ant-junit.jar ant is trying to use and make sure, they are for JUnit 4. Take a look at http://ant.apache.org/manual/Tasks/junit.html for the best place to put them.

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