Adds a test part result to the list.
| 3524 | |
| 3525 | // Adds a test part result to the list. |
| 3526 | void TestResult::AddTestPartResult(const BaseTestPartResult* test_part_result) { |
| 3527 | test_part_results_.push_back(test_part_result); |
| 3528 | } |
| 3529 | |
| 3530 | // Adds a test property to the list. If a property with the same key as the |
| 3531 | // supplied property is already represented, the value of this test_property |
no test coverage detected