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