Home | History | Annotate | Download | only in test

Lines Matching defs:testCase

22 import junit.framework.TestCase;
64 * If we want to run a single TestCase method only, we must not
68 if (test instanceof TestCase &&
69 ((TestCase)test).getName() == null) {
101 * Additional check necessary: If a TestCase contains a suite()
102 * method that returns a TestSuite including the TestCase itself,
124 if (test instanceof TestCase) {
125 TestCase testCase = (TestCase) test;
126 return testCase.getName();
163 } else if (TestCase.class.isAssignableFrom(test.getClass())) {