(ctx context.Context, data ...map[string]interface{})
| 23 | type testResolver struct{} |
| 24 | |
| 25 | func (*testResolver) Get(ctx context.Context, data ...map[string]interface{}) (TestStorage, error) { |
| 26 | return &testDB{}, nil |
| 27 | } |
| 28 | |
| 29 | type testDB struct{} |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected