标签: groovy automated-tests ignore
我在测试中有@Ignore的测试:
@Ignore
@Ignore ("fix the test") @Test void test_addition() { }
有没有办法用@Ignore重新运行测试。
答案 0 :(得分:0)
据我所知,JUnit 4+不会运行@Ignore注释的测试方法。期。为了运行样本测试,您必须注释掉(如果不是删除)注释:
// @Ignore ("fix the test") @Test void test_addition() { }