Lines Matching full:testsuite
55 * TestSuite and TestCases.
60 * 2. The TestSuite can be embedded, which means:
61 * TestPackage := TestSuite*
62 * TestSuite := TestSuite* | TestCase*
72 static final String TAG_SUITE = "TestSuite";
343 * @param testSuite The test suite to be appended.
345 void appendSuiteToElement(Node elem, TestClass testSuite) {
346 String suiteName = testSuite.mName;
359 appendTestCases(child, testSuite.mCases);
361 testSuite.mName = suiteName.substring(dotIndex + 1, suiteName.length());
362 appendSuiteToElement(child, testSuite);
369 appendSuiteToElementImpl(elem, testSuite);
455 * @param testSuite The test suite to be append.
457 void appendSuiteToElementImpl(Node elem, TestClass testSuite) {
459 String suiteName = testSuite.mName;
475 appendTestCases(leafSuiteElem, testSuite.mCases);