summaryrefslogtreecommitdiffstats
path: root/junit4/src/main/java/org/junit/experimental/categories/Category.java
blob: 3a4c0b956be093ad98f739662f9494063e555f67 (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
package org.junit.experimental.categories;

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

/**
 * 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)
public @interface Category {
	Class<?>[] value();
}