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(); }