blob: d6ede64f942eb170923aac00a672586863462d64 [file] [log] [blame]
package org.junit.experimental.theories.suppliers;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import org.junit.experimental.theories.ParametersSuppliedBy;
@ParametersSuppliedBy(TestedOnSupplier.class)
@Retention(RetentionPolicy.RUNTIME)
public @interface TestedOn {
int[] ints();
}