| 53 | TestTestingFixture fixture; |
| 54 | |
| 55 | void setup() |
| 56 | { |
| 57 | fixture.setTestFunction(&testFunction); |
| 58 | testFunction.parameter = &cache; |
| 59 | |
| 60 | defaultAllocator = new MemoryLeakAllocator(defaultMallocAllocator()); |
| 61 | allocator = new AccountingTestMemoryAllocator(accountant, defaultAllocator); |
| 62 | cache.setAllocator(defaultAllocator); |
| 63 | } |
| 64 | |
| 65 | void teardown() |
| 66 | { |
nothing calls this directly
no test coverage detected