Returns true iff the test fatally failed.
| 3168 | |
| 3169 | // Returns true iff the test fatally failed. |
| 3170 | bool TestResult::HasFatalFailure() const { |
| 3171 | return CountIf(test_part_results_, TestPartFatallyFailed) > 0; |
| 3172 | } |
| 3173 | |
| 3174 | // Returns true iff the test part non-fatally failed. |
| 3175 | static bool TestPartNonfatallyFailed(const TestPartResult& result) { |
nothing calls this directly
no test coverage detected