Home | History | Annotate | Download | only in theories
      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 {
     11 	boolean nullsAccepted() default true;
     12 }