| 149 | }; |
| 150 | |
| 151 | TEST(MemoryReporterPlugin, offReportsNothing) |
| 152 | { |
| 153 | MemoryReporterPluginUnderTest freshReporter; |
| 154 | freshReporter.preTestAction(*test, *result); |
| 155 | char* memory = new char; |
| 156 | delete memory; |
| 157 | freshReporter.postTestAction(*test, *result); |
| 158 | } |
| 159 | |
| 160 | TEST(MemoryReporterPlugin, meaninglessArgumentsAreIgnored) |
| 161 | { |
nothing calls this directly
no test coverage detected