Destructor of TestSuite.
| 4258 | |
| 4259 | // Destructor of TestSuite. |
| 4260 | TestSuite::~TestSuite() { |
| 4261 | // Deletes every Test in the collection. |
| 4262 | ForEach(test_info_list_, internal::Delete<TestInfo>); |
| 4263 | } |
| 4264 | |
| 4265 | // Returns the i-th test among all the tests. i can range from 0 to |
| 4266 | // total_test_count() - 1. If i is not in that range, returns NULL. |