Lines Matching full:testsuite
59 * TestSuite and TestCases.
64 * 2. The TestSuite can be embedded, which means:
65 * TestPackage := TestSuite*
66 * TestSuite := TestSuite* | TestCase*
76 static final String TAG_SUITE = "TestSuite";
367 * @param testSuite The test suite to be appended.
369 void appendSuiteToElement(Node elem, TestClass testSuite) {
370 String suiteName = testSuite.mName;
383 appendTestCases(child, testSuite.mCases);
385 testSuite.mName = suiteName.substring(dotIndex + 1, suiteName.length());
386 appendSuiteToElement(child, testSuite);
393 appendSuiteToElementImpl(elem, testSuite);
485 * @param testSuite The test suite to be append.
487 void appendSuiteToElementImpl(Node elem, TestClass testSuite) {
489 String suiteName = testSuite.mName;
505 appendTestCases(leafSuiteElem, testSuite.mCases);