Returns true iff test passed.
| 13400 | |
| 13401 | // Returns true iff test passed. |
| 13402 | static bool TestPassed(const TestInfo* test_info) { |
| 13403 | return test_info->should_run() && test_info->result()->Passed(); |
| 13404 | } |
| 13405 | |
| 13406 | // Returns true iff test skipped. |
| 13407 | static bool TestSkipped(const TestInfo* test_info) { |