Clears the object.
| 1837 | |
| 1838 | // Clears the object. |
| 1839 | void TestResult::Clear() { |
| 1840 | test_part_results_.clear(); |
| 1841 | test_properties_.clear(); |
| 1842 | death_test_count_ = 0; |
| 1843 | elapsed_time_ = 0; |
| 1844 | } |
| 1845 | |
| 1846 | // Returns true iff the test failed. |
| 1847 | bool TestResult::Failed() const { |
no test coverage detected