Returns true iff the test suite failed.
| 1858 | |
| 1859 | // Returns true iff the test suite failed. |
| 1860 | static bool TestSuiteFailed(const TestSuite* test_suite) { |
| 1861 | return test_suite->should_run() && test_suite->Failed(); |
| 1862 | } |
| 1863 | |
| 1864 | // Returns true iff test_suite contains at least one test that should |
| 1865 | // run. |