有没有办法重新运行方法本身有@Ignore的groovy测试

时间:2014-10-14 22:57:54

标签: groovy automated-tests ignore

我在测试中有@Ignore的测试:

@Ignore ("fix the test")
@Test
void test_addition() {
}

有没有办法用@Ignore重新运行测试。

1 个答案:

答案 0 :(得分:0)

据我所知,JUnit 4+不会运行@Ignore注释的测试方法。期。为了运行样本测试,您必须注释掉(如果不是删除)注释:

// @Ignore ("fix the test")
@Test
void test_addition() {
}