Gets the i-th test case among all the test cases. i can range from 0 to total_test_case_count() - 1. If i is not in that range, returns NULL.
| 967 | // Gets the i-th test case among all the test cases. i can range from 0 to |
| 968 | // total_test_case_count() - 1. If i is not in that range, returns NULL. |
| 969 | TestCase* GetMutableTestCase(int i) { |
| 970 | const int index = GetElementOr(test_case_indices_, i, -1); |
| 971 | return index < 0 ? NULL : test_cases_[index]; |
| 972 | } |
| 973 | |
| 974 | // Provides access to the event listener list. |
| 975 | TestEventListeners* listeners() { return &listeners_; } |
no test coverage detected