SetBaseURL sets base URL for current testcase.
(baseURL string)
| 47 | |
| 48 | // SetBaseURL sets base URL for current testcase. |
| 49 | func (c *TConfig) SetBaseURL(baseURL string) *TConfig { |
| 50 | c.BaseURL = baseURL |
| 51 | return c |
| 52 | } |
| 53 | |
| 54 | // SetHeaders sets global headers for current testcase. |
| 55 | func (c *TConfig) SetHeaders(headers map[string]string) *TConfig { |
no outgoing calls