aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/experimental/theories/Theory.java
blob: 134fe9d1bf5daed6347c363797264ef049bf7d29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * 
 */
package org.junit.experimental.theories;

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

@Retention(RetentionPolicy.RUNTIME)
public @interface Theory {
	boolean nullsAccepted() default true;
}