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.
| 6171 | // Gets the i-th test suite among all the test suites. i can range from 0 to |
| 6172 | // total_test_suite_count() - 1. If i is not in that range, returns NULL. |
| 6173 | TestSuite* UnitTest::GetMutableTestSuite(int i) { |
| 6174 | return impl()->GetMutableSuiteCase(i); |
| 6175 | } |
| 6176 | |
| 6177 | // Returns the list of event listeners that can be used to track events |
| 6178 | // inside Google Test. |