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.
| 4072 | // Gets the i-th test case among all the test cases. i can range from 0 to |
| 4073 | // total_test_case_count() - 1. If i is not in that range, returns NULL. |
| 4074 | TestCase* UnitTest::GetMutableTestCase(int i) { |
| 4075 | return impl()->GetMutableTestCase(i); |
| 4076 | } |
| 4077 | |
| 4078 | // Returns the list of event listeners that can be used to track events |
| 4079 | // inside Google Test. |