(t *testing.T)
| 369 | } |
| 370 | |
| 371 | func TestPrefixPrinter_SprintlnWithoutDebugger(t *testing.T) { |
| 372 | for _, p := range prefixPrinters { |
| 373 | t.Run("", func(t *testing.T) { |
| 374 | p2 := p.WithDebugger() |
| 375 | pterm.DisableDebugMessages() |
| 376 | testEmpty(t, func(a any) string { |
| 377 | return p2.Sprintln(a) |
| 378 | }) |
| 379 | }) |
| 380 | } |
| 381 | } |
| 382 | |
| 383 | func TestPrefixPrinter_SprintfWithoutDebugger(t *testing.T) { |
| 384 | for _, p := range prefixPrinters { |
nothing calls this directly
no test coverage detected
searching dependent graphs…