public abstract @interface

Category

implements Annotation
org.junit.experimental.categories.Category

Class Overview

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

        public interface FastTests {}
        public interface SlowTests {}

        public static class A {@Category(SlowTests.class)

Summary

[Expand]
Inherited Methods
From interface java.lang.annotation.Annotation