Clears the object.
| 3636 | |
| 3637 | // Clears the object. |
| 3638 | void TestResult::Clear() { |
| 3639 | ClearTestPartResults(); |
| 3640 | test_properties_.clear(); |
| 3641 | death_test_count_ = 0; |
| 3642 | elapsed_time_ = 0; |
| 3643 | } |
| 3644 | |
| 3645 | // Returns true iff the test failed. |
| 3646 | bool TestResult::Failed() const { |
no test coverage detected