Lines Matching refs:testClassName
431 * @param testClassName - full package name of test class and optionally method to add.
435 private void parseTestClass(String testClassName, TestSuiteBuilder testSuiteBuilder) {
436 int methodSeparatorIndex = testClassName.indexOf('#');
440 testMethodName = testClassName.substring(methodSeparatorIndex + 1);
441 testClassName = testClassName.substring(0, methodSeparatorIndex);
443 testSuiteBuilder.addTestClassByName(testClassName, testMethodName, getTargetContext());