1package junitparams.internal;
2
3import java.lang.reflect.Method;
4
5import org.junit.runner.Describable;
6import org.junit.runner.Description;
7import org.junit.runners.model.FrameworkMethod;
8
9/**
10 * A {@link FrameworkMethod} that also provides a {@link Description}.
11 */
12public abstract class DescribableFrameworkMethod extends FrameworkMethod implements Describable {
13
14    DescribableFrameworkMethod(Method method) {
15        super(method);
16    }
17}
18