Searched refs:tc (Results 1 – 1 of 1) sorted by relevance
113 for (TestCase tc : testCases) { in runTests()114 System.out.println(tc.testName); in runTests()116 runTest(tc); in runTests()123 private void runTest(TestCase tc) throws Exception { in runTest() argument126 Class<?> c = Class.forName(tc.testClass); in runTest()134 if (m.getName().equals(tc.testMethodName)) { in runTest()142 tc.testMethodName + " in class " + in runTest()143 tc.testClass + " for test " + in runTest()144 tc.testName); in runTest()148 retValue = method.invoke(null, tc.values); in runTest()[all …]