Gets the i-th test suite among all the test suites. i can range from 0 to total_test_suite_count() - 1. If i is not in that range, returns NULL.
| 6152 | // Gets the i-th test suite among all the test suites. i can range from 0 to |
| 6153 | // total_test_suite_count() - 1. If i is not in that range, returns NULL. |
| 6154 | const TestSuite* UnitTest::GetTestSuite(int i) const { |
| 6155 | return impl()->GetTestSuite(i); |
| 6156 | } |
| 6157 | |
| 6158 | // Legacy API is deprecated but still available |
| 6159 | #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ |
no test coverage detected