我想使用 Junit3 轻松执行我的多个测试用例类中选定的几个测试用例
由于我的 1-2 个测试用例因一堆测试用例而失败,并且还发现很难再次执行这两个测试套件的整个测试套件,因此是否有任何方法无需向其他测试用例添加注释或将这两个方法复制到不同的套件中。
提前感谢大家
As my 1-2 test cases are failing from bunch of test cases and also finding difficult to execute whole test suite again for these two, is there any method without adding comment to the others or copying these two methods in different suite.
Thanks to all in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于您不想运行的测试,请添加
@Ignore
注释。例如:For the tests you don't want to run, add the
@Ignore
annotation. For example: