(t *testing.T)
| 381 | } |
| 382 | |
| 383 | func TestPrefixPrinter_SprintfWithoutDebugger(t *testing.T) { |
| 384 | for _, p := range prefixPrinters { |
| 385 | t.Run("", func(t *testing.T) { |
| 386 | p2 := p.WithDebugger() |
| 387 | pterm.DisableDebugMessages() |
| 388 | testEmpty(t, func(a any) string { |
| 389 | return p2.Sprintf("Hello, %s!", a) |
| 390 | }) |
| 391 | }) |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | func TestPrefixPrinter_SprintflnWithoutDebugger(t *testing.T) { |
| 396 | for _, p := range prefixPrinters { |
nothing calls this directly
no test coverage detected
searching dependent graphs…