
com.carrotsearch.randomizedtesting.annotations.ThreadLeakScope 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.ClassRule;
import org.junit.Rule;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
@Inherited
public @interface ThreadLeakScope {
public static enum Scope {
/**
* No thread leaks from any individual test (including {@link Rule}s) or the
* entire suite (including {@link ClassRule}s).
*/
TEST,
/**
* No thread leaks from entire suite scope (individual tests may leak threads,
* they become part of the suite scope).
*/
SUITE,
/**
* No thread leak checks at all. Highly discouraged.
*/
NONE
}
Scope value() default Scope.TEST;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy