Home | History | Annotate | Download | only in suppliers
      1 package org.junit.experimental.theories.suppliers;
      2 
      3 import java.lang.annotation.Retention;
      4 import java.lang.annotation.RetentionPolicy;
      5 
      6 import org.junit.experimental.theories.ParametersSuppliedBy;
      7 
      8 
      9 @ParametersSuppliedBy(TestedOnSupplier.class)
     10 @Retention(RetentionPolicy.RUNTIME)
     11 public @interface TestedOn {
     12 	int[] ints();
     13 }
     14