Run one test using maven several times

I have a TestNG unit test that fails with an error. Is there a way to run one unit test several times using the surefire plugin? If not, are there any suggestions on the best way to handle this?

+5
source share
1 answer

Once I found:

@Test(invocationCount = 100)
+5
source

All Articles