| 273 | |
| 274 | |
| 275 | void ConsoleTestOutput::printBuffer(const char* s) |
| 276 | { |
| 277 | while (*s) { |
| 278 | PlatformSpecificPutchar(*s); |
| 279 | s++; |
| 280 | } |
| 281 | flush(); |
| 282 | } |
| 283 | |
| 284 | void ConsoleTestOutput::flush() |
| 285 | { |
nothing calls this directly
no test coverage detected