| 16 | |
| 17 | let requiredContext = Log.Context.Custom.AppInfoId; |
| 18 | class MockOneRequirementContext implements Context { |
| 19 | requirementsAreMet(requirements: { [key: string]: string | number | boolean }): boolean { |
| 20 | return !!requirements[Log.Context.toString(requiredContext)]; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | class MockSessionLogger extends SessionLogger { |
| 25 | constructor(options?: SessionLoggerOptions) { |
nothing calls this directly
no outgoing calls
no test coverage detected