Returns true iff the test case passed.
| 1825 | |
| 1826 | // Returns true iff the test case passed. |
| 1827 | static bool TestCasePassed(const TestCase* test_case) { |
| 1828 | return test_case->should_run() && test_case->Passed(); |
| 1829 | } |
| 1830 | |
| 1831 | // Returns true iff the test case failed. |
| 1832 | static bool TestCaseFailed(const TestCase* test_case) { |