log successful test runs
(testName, function string, args map[string]interface{}, startTime time.Time)
| 161 | |
| 162 | // log successful test runs |
| 163 | func logSuccess(testName, function string, args map[string]interface{}, startTime time.Time) { |
| 164 | baseLogger(testName, function, args, startTime). |
| 165 | With("status", "PASS"). |
| 166 | Info("") |
| 167 | } |
| 168 | |
| 169 | // As few of the features are not available in Gateway(s) currently, Check if err value is NotImplemented, |
| 170 | // and log as NA in that case and continue execution. Otherwise log as failure and return |
no test coverage detected