| 1426 | class TestResultAccessor { |
| 1427 | public: |
| 1428 | static void RecordProperty(TestResult* test_result, |
| 1429 | const std::string& xml_element, |
| 1430 | const TestProperty& property) { |
| 1431 | test_result->RecordProperty(xml_element, property); |
| 1432 | } |
| 1433 | |
| 1434 | static void ClearTestPartResults(TestResult* test_result) { |
| 1435 | test_result->ClearTestPartResults(); |
nothing calls this directly
no test coverage detected