(t *testing.T)
| 346 | } |
| 347 | |
| 348 | func TestPrefixPrinter_PrintflnWithoutDebugger(t *testing.T) { |
| 349 | for _, p := range prefixPrinters { |
| 350 | t.Run("", func(t *testing.T) { |
| 351 | p2 := p.WithDebugger() |
| 352 | pterm.DisableDebugMessages() |
| 353 | testDoesNotOutput(t, func(w io.Writer) { |
| 354 | p2.Printfln("Hello, World!") |
| 355 | }) |
| 356 | }) |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | func TestPrefixPrinter_SprintWithoutDebugger(t *testing.T) { |
| 361 | for _, p := range prefixPrinters { |
nothing calls this directly
no test coverage detected
searching dependent graphs…