blob: c529292f7f69c7285c9d5d709b1cda7524e73cb0 [file] [log] [blame]
package junitparams.internal;
import java.lang.reflect.Method;
import org.junit.runner.Describable;
import org.junit.runner.Description;
import org.junit.runners.model.FrameworkMethod;
/**
* A {@link FrameworkMethod} that also provides a {@link Description}.
*/
public abstract class DescribableFrameworkMethod extends FrameworkMethod implements Describable {
DescribableFrameworkMethod(Method method) {
super(method);
}
}