in httputil/mockclient.go [8:14]
Getfunc func(url string, headers map[string]string) (responseCode int, body []byte, err error)
Postfunc func(url string, headers map[string]string, payload []byte) (responseCode int, body []byte, err error)
Putfunc func(url string, headers map[string]string, payload []byte) (responseCode int, body []byte, err error)
Deletefunc func(url string, headers map[string]string, payload []byte) (responseCode int, body []byte, err error)
}
func (client *MockHttpClient) Get(url string, headers map[string]string) (responseCode int, body []byte, err error) {