summaryrefslogtreecommitdiffstats
path: root/junit4/src/main/java/org/junit/experimental/theories/ParametersSuppliedBy.java
blob: 8f090ef336163e910f1e604c24827bb1c0f71b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.junit.experimental.theories;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;


@Retention(RetentionPolicy.RUNTIME)
public @interface ParametersSuppliedBy {

	Class<? extends ParameterSupplier> value();

}