Maven 测试目标无法识别 JUNIT 自定义运行程序
我有 JUNIT 的自定义运行器,使用注释运行: @RunWith(SomeClass.class)
运行 Maven 目标测试时,它不会运行它。 应该做什么?可以配置吗?
I have custom runner of JUNIT, run with annotation:
@RunWith(SomeClass.class)
When running maven goal test it does not run it.
What should be done? is it configurable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该问题很可能与 @RunWith 无关;否则你至少应该得到一个错误。测试类是否与 Maven (Surefire) 的测试类命名模式之一匹配(例如 **/*Test.java)?
Most likely the problem isn't related to @RunWith; otherwise you should at least get an error. Does the test class match one of Maven's (Surefire's) naming patterns for test classes (e.g. **/*Test.java)?