Returns true iff the test has a non-fatal failure.
| 3668 | |
| 3669 | // Returns true iff the test has a non-fatal failure. |
| 3670 | bool TestResult::HasNonfatalFailure() const { |
| 3671 | return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0; |
| 3672 | } |
| 3673 | |
| 3674 | // Gets the number of all test parts. This is the sum of the number |
| 3675 | // of successful test parts and the number of failed test parts. |
nothing calls this directly
no test coverage detected