Clears the test part results.
| 3515 | |
| 3516 | // Clears the test part results. |
| 3517 | void TestResult::ClearTestPartResults() { |
| 3518 | for (unsigned int i =0; i< test_part_results_.size();i++) |
| 3519 | { |
| 3520 | delete (test_part_results_[i]); |
| 3521 | } |
| 3522 | test_part_results_.clear(); |
| 3523 | } |
| 3524 | |
| 3525 | // Adds a test part result to the list. |
| 3526 | void TestResult::AddTestPartResult(const BaseTestPartResult* test_part_result) { |
no test coverage detected