| 305 | } |
| 306 | |
| 307 | type TestAuthenticator struct { |
| 308 | Username string |
| 309 | Password string |
| 310 | BucketName string |
| 311 | } |
| 312 | |
| 313 | func (t TestAuthenticator) GetCredentials() (username, password, bucketname string) { |
| 314 | return t.Username, t.Password, t.BucketName |
nothing calls this directly
no outgoing calls
no test coverage detected