Returns true iff the test fatally failed.
| 3658 | |
| 3659 | // Returns true iff the test fatally failed. |
| 3660 | bool TestResult::HasFatalFailure() const { |
| 3661 | return CountIf(test_part_results_, TestPartFatallyFailed) > 0; |
| 3662 | } |
| 3663 | |
| 3664 | // Returns true iff the test part non-fatally failed. |
| 3665 | static bool TestPartNonfatallyFailed(const BaseTestPartResult* result) { |
nothing calls this directly
no test coverage detected