| 106 | } |
| 107 | |
| 108 | type stubAPIKeyInspector struct { |
| 109 | listErr error |
| 110 | |
| 111 | getResp *search.GetApiKeyResponse |
| 112 | getErr error |
| 113 | getCalled bool |
| 114 | } |
| 115 | |
| 116 | func (s *stubAPIKeyInspector) ListAPIKeys(opts ...search.RequestOption) (*search.ListApiKeysResponse, error) { |
| 117 | return &search.ListApiKeysResponse{}, s.listErr |
nothing calls this directly
no outgoing calls
no test coverage detected