(t *testing.T)
| 310 | } |
| 311 | |
| 312 | func TestPrefixPrinter_PrintWithoutDebugger(t *testing.T) { |
| 313 | for _, p := range prefixPrinters { |
| 314 | t.Run("", func(t *testing.T) { |
| 315 | p2 := p.WithDebugger() |
| 316 | pterm.DisableDebugMessages() |
| 317 | testDoesNotOutput(t, func(w io.Writer) { |
| 318 | p2.Print("Hello, World!") |
| 319 | }) |
| 320 | }) |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | func TestPrefixPrinter_PrintlnWithoutDebugger(t *testing.T) { |
| 325 | for _, p := range prefixPrinters { |
nothing calls this directly
no test coverage detected
searching dependent graphs…