Adds a test part result to the list.
| 3108 | |
| 3109 | // Adds a test part result to the list. |
| 3110 | void TestResult::AddTestPartResult(const TestPartResult& test_part_result) { |
| 3111 | test_part_results_.push_back(test_part_result); |
| 3112 | } |
| 3113 | |
| 3114 | // Adds a test property to the list. If a property with the same key as the |
| 3115 | // supplied property is already represented, the value of this test_property |
no test coverage detected