junit.framework.AssertionFailedError:在 xyz 包中找不到测试
当我尝试从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该检查 ant 正在尝试使用哪些
junit.jar
和ant-junit.jar
并确保它们适用于 JUnit 4。请查看 http://ant.apache.org/manual/Tasks/junit.html 为最佳放置它们的地方。You should check, which
junit.jar
andant-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.