// Valid, existing bucket, but sending invalid delimeter values (9-10).
// Empty string < "" > and forward slash < / > are the ony two valid arguments for delimeter.
{"test-bucket-list-object","","","*",0,ListObjectsInfo{},fmt.Errorf("delimiter '%s' is not supported","*"),false},
{"test-bucket-list-object","","","-",0,ListObjectsInfo{},fmt.Errorf("delimiter '%s' is not supported","-"),false},
// Testing for failure cases with both perfix and marker (11).
// The prefix and marker combination to be valid it should satisfy strings.HasPrefix(marker, prefix).
{"test-bucket-list-object","asia","europe-object","",0,ListObjectsInfo{},fmt.Errorf("Invalid combination of marker '%s' and prefix '%s'","europe-object","asia"),false},