| 182 | |
| 183 | bool memoryWasAllocated; |
| 184 | char* alloc_memory(size_t size, const char* file, size_t line) _override |
| 185 | { |
| 186 | memoryWasAllocated = true; |
| 187 | return TestMemoryAllocator::alloc_memory(size, file, line); |
| 188 | } |
| 189 | }; |
| 190 | |
| 191 | TEST(SimpleString, allocatorForSimpleStringCanBeReplaced) |
no outgoing calls
no test coverage detected