Home | History | Annotate | Download | only in test

Lines Matching refs:testMethodName

56     public void setTestClassName(String testClassName, String testMethodName) {
59 if (shouldRunSingleTestMethod(testMethodName, testClass)) {
60 TestCase testCase = buildSingleTestMethod(testClass, testMethodName);
101 private TestCase buildSingleTestMethod(Class testClass, String testMethodName) {
104 return newSingleTestMethod(testClass, testMethodName, c);
110 return newSingleTestMethod(testClass, testMethodName, c, testMethodName);
117 private TestCase newSingleTestMethod(Class testClass, String testMethodName,
121 testCase.setName(testMethodName);
135 private boolean shouldRunSingleTestMethod(String testMethodName,
137 return testMethodName != null && TestCase.class.isAssignableFrom(testClass);