All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.spincast.testing.junitrunner.RepeatUntilSuccess Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package org.spincast.testing.junitrunner;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotation to specify that a test or a test class
 * will be ran until it succeeds or the max number of tries is
 * reached.
 * 

* This should only be used for tests that you can't * make pass 100% of the time. It shouldn't be use in general! *

* 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. */ @Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface RepeatUntilSuccess { /** * The maximum number of loops. */ int value(); /** * Sleep time in milliseconds between two loops. *

* Default: no sleep. */ int sleep() default 0; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy