
com.carrotsearch.randomizedtesting.annotations.Timeout Maven / Gradle / Ivy
package com.carrotsearch.randomizedtesting.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.rules.TestRule;
import com.carrotsearch.randomizedtesting.RandomizedRunner;
import com.carrotsearch.randomizedtesting.SysGlobals;
/**
* Maximum execution time for a single test method. Test methods are defined as
* any instance-scope {@link TestRule}s, {@link Before} and {@link After} hooks
* and {@link Test} methods. Suite class's constructor is not part of the
* measured code (see {@link TimeoutSuite}).
*
*
* Overrides a global default {@link RandomizedRunner#DEFAULT_TIMEOUT} or a
* system property override {@link SysGlobals#SYSPROP_TIMEOUT}.
*
* @see TimeoutSuite
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
@Inherited
public @interface Timeout {
/**
* Timeout time in millis. The timeout time is approximate, it may take longer
* to actually abort the test case.
*/
public int millis();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy