Open Source Repository

Home /junit/junit-4.8.2 | Repository Home



org/junit/experimental/theories/Theory.java
/**
 
 */
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;
}