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.
| 985 | // Gets the i-th test case among all the test cases. i can range from 0 to |
| 986 | // total_test_case_count() - 1. If i is not in that range, returns NULL. |
| 987 | const TestCase* GetTestCase(int i) const { |
| 988 | const int index = GetElementOr(test_case_indices_, i, -1); |
| 989 | return index < 0 ? NULL : test_cases_[i]; |
| 990 | } |
| 991 | |
| 992 | // Gets the i-th test case among all the test cases. i can range from 0 to |
| 993 | // total_test_case_count() - 1. If i is not in that range, returns NULL. |
no test coverage detected