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