@Target(value={TYPE,METHOD}) @Retention(value=RUNTIME) public @interface RepeatUntilFailure
You should not use this except when you try to debug a test that sometimes fails... This allows you to run it multiple times to trigger the error.
Also, this may be obvious, but notice that the code annotated with this will be ran more than once! Make sure this code does support it and doesn't have unwanted side effects.
Copyright © 2019. All rights reserved.