Returns true iff the test fatally failed.
| 3707 | |
| 3708 | // Returns true iff the test fatally failed. |
| 3709 | bool TestResult::HasFatalFailure() const { |
| 3710 | return CountIf(test_part_results_, TestPartFatallyFailed) > 0; |
| 3711 | } |
| 3712 | |
| 3713 | // Returns true iff the test part non-fatally failed. |
| 3714 | static bool TestPartNonfatallyFailed(const TestPartResult& result) { |
nothing calls this directly
no test coverage detected