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.
| 5009 | // Gets the i-th test case among all the test cases. i can range from 0 to |
| 5010 | // total_test_case_count() - 1. If i is not in that range, returns NULL. |
| 5011 | const TestCase* UnitTest::GetTestCase(int i) const { |
| 5012 | return impl()->GetTestCase(i); |
| 5013 | } |
| 5014 | |
| 5015 | // Gets the i-th test case among all the test cases. i can range from 0 to |
| 5016 | // total_test_case_count() - 1. If i is not in that range, returns NULL. |