| 299 | struct FakeOutput |
| 300 | { |
| 301 | FakeOutput() : SaveFOpen(PlatformSpecificFOpen), SaveFPuts(PlatformSpecificFPuts), |
| 302 | SaveFClose(PlatformSpecificFClose), SavePutchar(PlatformSpecificPutchar) |
| 303 | { |
| 304 | installFakes(); |
| 305 | currentFake = this; |
| 306 | } |
| 307 | |
| 308 | ~FakeOutput() |
| 309 | { |
nothing calls this directly
no outgoing calls
no test coverage detected