001package org.junit.experimental.theories.suppliers; 002 003import java.lang.annotation.Retention; 004import java.lang.annotation.RetentionPolicy; 005 006import org.junit.experimental.theories.ParametersSuppliedBy; 007 008@ParametersSuppliedBy(TestedOnSupplier.class) 009@Retention(RetentionPolicy.RUNTIME) 010public @interface TestedOn { 011 int[] ints(); 012}