aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/experimental/categories/Category.java
blob: 8eae83677c94f1b5975d136d56a84aaf4c8c0e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package org.junit.experimental.categories;

import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

import org.junit.validator.ValidateWith;

/**
 * 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:
 * <pre>
 * public interface FastTests {}
 * public interface SlowTests {}
 *
 * public static class A {
 * &#064;Test
 * public void a() {
 * fail();
 * }
 *
 * &#064;Category(SlowTests.class)
 * &#064;Test
 * public void b() {
 * }
 * }
 *
 * &#064;Category({SlowTests.class, FastTests.class})
 * public static class B {
 * &#064;Test
 * public void c() {
 *
 * }
 * }
 * </pre>
 *
 * For more usage, see code example on {@link Categories}.
 */
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@ValidateWith(CategoryValidator.class)
public @interface Category {
    Class<?>[] value();
}