| 5905 | } |
| 5906 | |
| 5907 | UnitTestImpl::~UnitTestImpl() { |
| 5908 | // Deletes every TestCase. |
| 5909 | ForEach(test_cases_, internal::Delete<TestCase>); |
| 5910 | |
| 5911 | // Deletes every Environment. |
| 5912 | ForEach(environments_, internal::Delete<Environment>); |
| 5913 | |
| 5914 | delete os_stack_trace_getter_; |
| 5915 | } |
| 5916 | |
| 5917 | // Adds a TestProperty to the current TestResult object when invoked in a |
| 5918 | // context of a test, to current test case's ad_hoc_test_result when invoke |