JUnit4 测试运行器
我的 Java 测试无法编译,我运行它并得到:
没有junit测试 找不到主类(在运行配置中指定)
My Java test do not compile, I run it and have:
no junit tests
could not find main class (specified in run-configuration)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的类中没有任何
@Test
方法。JUnit4 查找用
@Test
注释的方法 - 如果在类中找不到任何方法,则它完全忽略该类。You don't have any
@Test
methods in your class.JUnit4 looks for methods annotated with
@Test
- if it doesn't find any in a class, it omits that class completely.我同意彼得的观点
I agree with Peter