• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  *
3  */
4 package org.junit.experimental.theories;
5 
6 import java.lang.annotation.Retention;
7 import java.lang.annotation.RetentionPolicy;
8 
9 @Retention(RetentionPolicy.RUNTIME)
10 public @interface Theory {
nullsAccepted()11 	boolean nullsAccepted() default true;
12 }