Lines Matching refs:testClass
13 import org.junit.runners.model.TestClass;
28 private Class<?> testClass;
34 public TestMethod(FrameworkMethod method, TestClass testClass) {
36 this.testClass = testClass.getJavaClass();
38 parametersReader = new ParametersReader(testClass(), frameworkMethod);
47 public static List<FrameworkMethod> listFrom(TestClass testClass) {
50 for (FrameworkMethod frameworkMethod : testClass.getAnnotatedMethods(Test.class)) {
51 TestMethod testMethod = new TestMethod(frameworkMethod, testClass);
80 private Class<?> testClass() {
81 return testClass;
109 return Description.createTestDescription(testClass().getName(), name, uniqueMethodId);
115 testClass, name(), frameworkMethodAnnotations.allAnnotations());