log not applicable test runs
(testName, function string, args map[string]interface{}, startTime time.Time, alert string)
| 199 | |
| 200 | // log not applicable test runs |
| 201 | func logIgnored(testName, function string, args map[string]interface{}, startTime time.Time, alert string) { |
| 202 | baseLogger(testName, function, args, startTime). |
| 203 | With( |
| 204 | "status", "NA", |
| 205 | "alert", strings.Split(alert, " ")[0]+" is NotImplemented", |
| 206 | ).Info("") |
| 207 | } |
| 208 | |
| 209 | // Delete objects in given bucket, recursively |
| 210 | func cleanupBucket(bucketName string, c *minio.Client) error { |
no test coverage detected