()
| 11916 | } |
| 11917 | |
| 11918 | func testUserMetadataCopyingV2() { |
| 11919 | // initialize logging params |
| 11920 | startTime := time.Now() |
| 11921 | testName := getFuncName() |
| 11922 | function := "CopyObject(destination, source)" |
| 11923 | args := map[string]interface{}{} |
| 11924 | |
| 11925 | c, err := NewClient(ClientConfig{CredsV2: true}) |
| 11926 | if err != nil { |
| 11927 | logError(testName, function, args, startTime, "", "MinIO client v2 object creation failed", err) |
| 11928 | return |
| 11929 | } |
| 11930 | |
| 11931 | testUserMetadataCopyingWrapper(c) |
| 11932 | } |
| 11933 | |
| 11934 | func testStorageClassMetadataPutObject() { |
| 11935 | // initialize logging params |
no test coverage detected