Returns true iff the test case passed.
| 1625 | |
| 1626 | // Returns true iff the test case passed. |
| 1627 | static bool TestCasePassed(const TestCase* test_case) { |
| 1628 | return test_case->should_run() && test_case->Passed(); |
| 1629 | } |
| 1630 | |
| 1631 | // Returns true iff the test case failed. |
| 1632 | static bool TestCaseFailed(const TestCase* test_case) { |