| 7 | ) |
| 8 | |
| 9 | type TestContext struct { |
| 10 | ctx context.Context |
| 11 | params map[string]string |
| 12 | } |
| 13 | |
| 14 | func GetTestContext(params map[string]string) serverutils.ParamContext { |
| 15 | return &TestContext{context.Background(), params} |
nothing calls this directly
no outgoing calls
no test coverage detected