| 16 | ) |
| 17 | |
| 18 | type gitCredentialsConfigurerSpy struct { |
| 19 | hosts []string |
| 20 | setupErr error |
| 21 | } |
| 22 | |
| 23 | func (gf *gitCredentialsConfigurerSpy) ConfigureOurs(hostname string) error { |
| 24 | gf.hosts = append(gf.hosts, hostname) |
nothing calls this directly
no outgoing calls
no test coverage detected