Returns true iff the unit test failed (i.e. some test suite failed or something outside of all tests failed).
| 975 | // Returns true iff the unit test failed (i.e. some test suite failed |
| 976 | // or something outside of all tests failed). |
| 977 | bool Failed() const { |
| 978 | return failed_test_suite_count() > 0 || ad_hoc_test_result()->Failed(); |
| 979 | } |
| 980 | |
| 981 | // Gets the i-th test suite among all the test suites. i can range from 0 to |
| 982 | // total_test_suite_count() - 1. If i is not in that range, returns NULL. |
no test coverage detected