aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/experimental/theories/suppliers/TestedOn.java
blob: d6ede64f942eb170923aac00a672586863462d64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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();
}