Open Source Repository

Home /junit/junit-4.10 | Repository Home



org/junit/experimental/theories/suppliers/TestedOn.java
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();
}