Gets the i-th test suite among all the test suites. i can range from 0 to total_test_suite_count() - 1. If i is not in that range, returns NULL.
| 993 | // Gets the i-th test suite among all the test suites. i can range from 0 to |
| 994 | // total_test_suite_count() - 1. If i is not in that range, returns NULL. |
| 995 | TestSuite* GetMutableSuiteCase(int i) { |
| 996 | const int index = GetElementOr(test_suite_indices_, i, -1); |
| 997 | return index < 0 ? nullptr : test_suites_[static_cast<size_t>(index)]; |
| 998 | } |
| 999 | |
| 1000 | // Provides access to the event listener list. |
| 1001 | TestEventListeners* listeners() { return &listeners_; } |
no test coverage detected