| 6454 | } |
| 6455 | |
| 6456 | UnitTestImpl::~UnitTestImpl() { |
| 6457 | // Deletes every TestSuite. |
| 6458 | ForEach(test_suites_, internal::Delete<TestSuite>); |
| 6459 | |
| 6460 | // Deletes every Environment. |
| 6461 | ForEach(environments_, internal::Delete<Environment>); |
| 6462 | |
| 6463 | delete os_stack_trace_getter_; |
| 6464 | } |
| 6465 | |
| 6466 | // Adds a TestProperty to the current TestResult object when invoked in a |
| 6467 | // context of a test, to current test suite's ad_hoc_test_result when invoke |