(t *testing.T)
| 15 | ) |
| 16 | |
| 17 | func TestNewManager(t *testing.T) { |
| 18 | t.Parallel() |
| 19 | assert.NotNil(t, NewManager( |
| 20 | "", |
| 21 | "", |
| 22 | "", |
| 23 | "", |
| 24 | "", |
| 25 | WithTracer(opentracing.GlobalTracer()), |
| 26 | WithPathPrefix(""), |
| 27 | WithHTTPClient(http.DefaultClient), |
| 28 | WithLocationFunc(func(location string) (url string) { |
| 29 | return "" |
| 30 | }), |
| 31 | WithKeyer(key.New()), |
| 32 | WithAutoExtension(true), |
| 33 | )) |
| 34 | } |
| 35 | |
| 36 | func TestManager_CreateBucket(t *testing.T) { |
| 37 | t.Parallel() |
nothing calls this directly
no test coverage detected