Clears the object.
| 3146 | |
| 3147 | // Clears the object. |
| 3148 | void TestResult::Clear() { |
| 3149 | test_part_results_.clear(); |
| 3150 | test_properties_.clear(); |
| 3151 | death_test_count_ = 0; |
| 3152 | elapsed_time_ = 0; |
| 3153 | } |
| 3154 | |
| 3155 | // Returns true iff the test failed. |
| 3156 | bool TestResult::Failed() const { |
no test coverage detected