| 46 | CodeMemoryReportFormatter* formatter; |
| 47 | |
| 48 | void setup() |
| 49 | { |
| 50 | cAllocator = defaultMallocAllocator(); |
| 51 | newAllocator = defaultNewAllocator(); |
| 52 | newArrayAllocator= defaultNewArrayAllocator(); |
| 53 | memory01 = (char*) 0x01; |
| 54 | memory02 = (char*) 0x02; |
| 55 | |
| 56 | formatter = new CodeMemoryReportFormatter(cAllocator); |
| 57 | testResult = new TestResult(testOutput); |
| 58 | } |
| 59 | |
| 60 | void teardown() |
| 61 | { |
nothing calls this directly
no test coverage detected