| 20 | import type { WsConnection } from '../src/ws/connection'; |
| 21 | |
| 22 | class TestLogger implements ILoggerT { |
| 23 | readonly _serviceBrand: undefined; |
| 24 | |
| 25 | info(): void {} |
| 26 | warn(): void {} |
| 27 | error(): void {} |
| 28 | debug(): void {} |
| 29 | child(): ILoggerT { |
| 30 | return this; |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | class FakeSessionClients implements ISessionClientsServiceT { |
| 35 | readonly _serviceBrand: undefined; |
nothing calls this directly
no outgoing calls
no test coverage detected