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.
| 5578 | // Gets the i-th test case among all the test cases. i can range from 0 to |
| 5579 | // total_test_case_count() - 1. If i is not in that range, returns NULL. |
| 5580 | const TestCase* UnitTest::GetTestCase(int i) const { |
| 5581 | return impl()->GetTestCase(i); |
| 5582 | } |
| 5583 | |
| 5584 | // Returns the TestResult containing information on test failures and |
| 5585 | // properties logged outside of individual test cases. |