()
| 11746 | } |
| 11747 | |
| 11748 | func testUserMetadataCopying() { |
| 11749 | // initialize logging params |
| 11750 | startTime := time.Now() |
| 11751 | testName := getFuncName() |
| 11752 | function := "CopyObject(destination, source)" |
| 11753 | args := map[string]interface{}{} |
| 11754 | |
| 11755 | c, err := NewClient(ClientConfig{}) |
| 11756 | if err != nil { |
| 11757 | logError(testName, function, args, startTime, "", "MinIO client object creation failed", err) |
| 11758 | return |
| 11759 | } |
| 11760 | |
| 11761 | testUserMetadataCopyingWrapper(c) |
| 11762 | } |
| 11763 | |
| 11764 | func testUserMetadataCopyingWrapper(c *minio.Client) { |
| 11765 | // initialize logging params |
no test coverage detected