(t *testing.T)
| 250 | } |
| 251 | |
| 252 | func TestPrefixPrinter_PrintlnWithDebugger(t *testing.T) { |
| 253 | for _, p := range prefixPrinters { |
| 254 | t.Run("", func(t *testing.T) { |
| 255 | p2 := p.WithDebugger() |
| 256 | pterm.EnableDebugMessages() |
| 257 | testPrintlnContains(t, func(w io.Writer, a any) { |
| 258 | p2.WithWriter(w).Println(a) |
| 259 | }) |
| 260 | }) |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | func TestPrefixPrinter_PrintfWithDebugger(t *testing.T) { |
| 265 | for _, p := range prefixPrinters { |
nothing calls this directly
no test coverage detected
searching dependent graphs…