(ctx context.Context, params *GetTestParams, reqEditors ...RequestEditorFn)
| 251 | } |
| 252 | |
| 253 | func (c *Client) GetTest(ctx context.Context, params *GetTestParams, reqEditors ...RequestEditorFn) (*http.Response, error) { |
| 254 | req, err := NewGetTestRequest(c.Server, params) |
| 255 | if err != nil { |
| 256 | return nil, err |
| 257 | } |
| 258 | req = req.WithContext(ctx) |
| 259 | if err := c.applyEditors(ctx, req, reqEditors); err != nil { |
| 260 | return nil, err |
| 261 | } |
| 262 | return c.Client.Do(req) |
| 263 | } |
| 264 | |
| 265 | // NewGetTestRequest generates requests for GetTest |
| 266 | func NewGetTestRequest(server string, params *GetTestParams) (*http.Request, error) { |
nothing calls this directly
no test coverage detected