nl.hsac.fitnesse.fixture.slim.web.annotation.WaitUntil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hsac-fitnesse-fixtures Show documentation
Show all versions of hsac-fitnesse-fixtures Show documentation
Fixtures to assist in testing via FitNesse
package nl.hsac.fitnesse.fixture.slim.web.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Indicates BrowserTest should wrap any invocations of the supplied method in a waitUntil();
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface WaitUntil {
/**
* @return How to handle a timeout.
*/
TimeoutPolicy value() default TimeoutPolicy.THROW;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy