Destructor of TestCase.
| 3704 | |
| 3705 | // Destructor of TestCase. |
| 3706 | TestCase::~TestCase() { |
| 3707 | // Deletes every Test in the collection. |
| 3708 | ForEach(test_info_list_, internal::Delete<TestInfo>); |
| 3709 | } |
| 3710 | |
| 3711 | // Returns the i-th test among all the tests. i can range from 0 to |
| 3712 | // total_test_count() - 1. If i is not in that range, returns NULL. |