| 395 | } |
| 396 | |
| 397 | void TestCase::setTestSuite(TestSuite* testSuite) |
| 398 | { |
| 399 | if (_testSuite != testSuite) |
| 400 | { |
| 401 | testSuite->retain(); |
| 402 | if (_testSuite) |
| 403 | { |
| 404 | _testSuite->release(); |
| 405 | } |
| 406 | _testSuite = testSuite; |
| 407 | } |
| 408 | } |
| 409 | |
| 410 | TestCase::Type TestCase::getTestType() const |
| 411 | { |
no test coverage detected