fakeContext is a minimal context.Context implementation for testing.
| 15 | |
| 16 | // fakeContext is a minimal context.Context implementation for testing. |
| 17 | type fakeContext struct{} |
| 18 | |
| 19 | func (f fakeContext) Version() string { return "test" } |
| 20 | func (f fakeContext) Platform() context.Platform { return nil } |
nothing calls this directly
no outgoing calls
no test coverage detected