Returns true iff the test has a non-fatal failure.
| 3717 | |
| 3718 | // Returns true iff the test has a non-fatal failure. |
| 3719 | bool TestResult::HasNonfatalFailure() const { |
| 3720 | return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0; |
| 3721 | } |
| 3722 | |
| 3723 | // Gets the number of all test parts. This is the sum of the number |
| 3724 | // of successful test parts and the number of failed test parts. |
nothing calls this directly
no test coverage detected