| 146 | } |
| 147 | |
| 148 | void Task::addTestCase(TestCase *testCase) { |
| 149 | testCase->setIndex(testCaseList.size() + 1); |
| 150 | testCaseList.append(testCase); |
| 151 | } |
| 152 | |
| 153 | void Task::addTestCase(TestCase *testCase, int loc) { testCaseList.insert(loc, testCase); } |
| 154 |