(msg string, args ...any)
| 418 | } |
| 419 | |
| 420 | func coloredPrintf(msg string, args ...any) { |
| 421 | msg = fmt.Sprintf(msg, args...) |
| 422 | colorifier := "\033[1;33m%+v\033[0m" //yellow |
| 423 | fmt.Printf(colorifier, msg) |
| 424 | } |
| 425 | |
| 426 | type testContext struct { |
| 427 | printPayload bool |
no test coverage detected