Destructor of TestCase.
| 4170 | |
| 4171 | // Destructor of TestCase. |
| 4172 | TestCase::~TestCase() { |
| 4173 | // Deletes every Test in the collection. |
| 4174 | ForEach(test_info_list_, internal::Delete<TestInfo>); |
| 4175 | } |
| 4176 | |
| 4177 | // Returns the i-th test among all the tests. i can range from 0 to |
| 4178 | // total_test_count() - 1. If i is not in that range, returns NULL. |