| 112 | AllocatorForMemoryLeakDetectionTest* testAllocator; |
| 113 | |
| 114 | void setup() |
| 115 | { |
| 116 | reporter = new MemoryLeakFailureForTest; |
| 117 | detector = new MemoryLeakDetector(reporter); |
| 118 | testAllocator = new AllocatorForMemoryLeakDetectionTest; |
| 119 | detector->enable(); |
| 120 | detector->startChecking(); |
| 121 | reporter->message = new SimpleString(); |
| 122 | } |
| 123 | void teardown() |
| 124 | { |
| 125 | delete reporter->message; |
nothing calls this directly
no test coverage detected