Returns true iff test passed.
| 17869 | |
| 17870 | // Returns true iff test passed. |
| 17871 | static bool TestPassed(const TestInfo* test_info) { |
| 17872 | return test_info->should_run() && test_info->result()->Passed(); |
| 17873 | } |
| 17874 | |
| 17875 | // Returns true iff test failed. |
| 17876 | static bool TestFailed(const TestInfo* test_info) { |