Creates a TestSuiteReferenceparamclassName the fully qualified name of the test class mClassName = className; mTests = new ArrayList<TestCaseReference>();
mClassName = className; mTests = new ArrayList<TestCaseReference>();
Adds a test method to this suite.paramtestRef the {@link TestCaseReference} to add mTests.add(testRef);
mTests.add(testRef);
Returns a count of the number of test cases included in this suite. return mTests.size();
return mTests.size();
Return the name of this test class. return mClassName;
return mClassName;
Sends test identifier and test count information for this test class, and all its included test methods.paramnotified the {@link IVisitsTestTrees} to send test info too notified.visitTreeEntry(getIdentifier(), true, countTestCases()); for (TestCaseReference ref : mTests) { ref.sendTree(notified); }
notified.visitTreeEntry(getIdentifier(), true, countTestCases()); for (TestCaseReference ref : mTests) { ref.sendTree(notified); }