org.junit.experimental.categories
Annotation Type Category


@Retention(value=RUNTIME)
public @interface Category

Marks a test class or test method as belonging to one or more categories of tests. The value is an array of interface classes that extend the CategoryType superinterface. This annotation is only interpreted by the Categories runner (at present). For example:

        public interface FastTests extends CategoryType {}
        public interface SlowTests extends CategoryType {}

        public static class A {


Required Element Summary
 Class<?>[] value
           
 

Element Detail

value

public abstract Class<?>[] value