We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If there is a testfailure in the first runs the test will run times instead of minSuccess is fullfilled.
private int test = 0; @DisplayName("should stop after 3rd retry, but runs 20 times") @RepeatedIfExceptionsTest(repeats = 20, suspend = 1000, minSuccess = 1) public void testTest() { if (test < 2) { test++; fail(); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If there is a testfailure in the first runs the test will run times instead of minSuccess is fullfilled.
The text was updated successfully, but these errors were encountered: