Returns true if and only if the test was skipped.
| 2390 | |
| 2391 | // Returns true if and only if the test was skipped. |
| 2392 | bool TestResult::Skipped() const { |
| 2393 | return !Failed() && CountIf(test_part_results_, TestPartSkipped) > 0; |
| 2394 | } |
| 2395 | |
| 2396 | // Returns true if and only if the test failed. |
| 2397 | bool TestResult::Failed() const { |
no test coverage detected