| 2 | import {ConsoleOutput} from "../../scripts/logging/consoleOutput"; |
| 3 | |
| 4 | export interface BacklogDataPackage { |
| 5 | level: Log.Trace.Level; |
| 6 | message: string; |
| 7 | object: any; |
| 8 | }; |
| 9 | |
| 10 | export class MockConsole implements ConsoleOutput { |
| 11 | public backlog: BacklogDataPackage[]; |
nothing calls this directly
no outgoing calls
no test coverage detected