aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/junitparams/internal/DescribableFrameworkMethod.java
blob: c529292f7f69c7285c9d5d709b1cda7524e73cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
    }
}