Returns true iff the test has a non-fatal failure.
| 3178 | |
| 3179 | // Returns true iff the test has a non-fatal failure. |
| 3180 | bool TestResult::HasNonfatalFailure() const { |
| 3181 | return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0; |
| 3182 | } |
| 3183 | |
| 3184 | // Gets the number of all test parts. This is the sum of the number |
| 3185 | // of successful test parts and the number of failed test parts. |
nothing calls this directly
no test coverage detected