GetRetries returns the retries of the command
()
| 109 | |
| 110 | // GetRetries returns the retries of the command |
| 111 | func (c *CommandUnderTest) GetRetries() int { |
| 112 | if c.Retries == 0 { |
| 113 | return 1 |
| 114 | } |
| 115 | return c.Retries |
| 116 | } |
no outgoing calls
no test coverage detected