SetThinkTime sets think time config for current testcase.
(strategy thinkTimeStrategy, cfg interface{}, limit float64)
| 71 | |
| 72 | // SetThinkTime sets think time config for current testcase. |
| 73 | func (c *TConfig) SetThinkTime(strategy thinkTimeStrategy, cfg interface{}, limit float64) *TConfig { |
| 74 | c.ThinkTimeSetting = &ThinkTimeConfig{strategy, cfg, limit} |
| 75 | return c |
| 76 | } |
| 77 | |
| 78 | // SetRequestTimeout sets request timeout in seconds. |
| 79 | func (c *TConfig) SetRequestTimeout(seconds float32) *TConfig { |
no outgoing calls