Home | History | Annotate | Download | only in test

Lines Matching refs:testClassName

432      * @param testClassName - full package name of test class and optionally method to add.
436 private void parseTestClass(String testClassName, TestSuiteBuilder testSuiteBuilder) {
437 int methodSeparatorIndex = testClassName.indexOf('#');
441 testMethodName = testClassName.substring(methodSeparatorIndex + 1);
442 testClassName = testClassName.substring(0, methodSeparatorIndex);
444 testSuiteBuilder.addTestClassByName(testClassName, testMethodName, getTargetContext());