Annotation Type Seeds
-
@Documented @Retention(RUNTIME) @Target(METHOD) @Inherited public @interface SeedsDefines a list of starting seeds for a given test.Typically, you'll want to override the class's seed to make the test repeat a "fixed" scenario in which the test was known to fail in the past. In addition, you may still permit a randomized seed by adding a non-restricted
Seedas in:@
Seeds({ @Seed("deadbeef"), @Seed("cafebabe"), @Seed()})