(t *testing.T)
| 358 | } |
| 359 | |
| 360 | func TestPrefixPrinter_SprintWithoutDebugger(t *testing.T) { |
| 361 | for _, p := range prefixPrinters { |
| 362 | t.Run("", func(t *testing.T) { |
| 363 | p2 := p.WithDebugger() |
| 364 | testEmpty(t, func(a any) string { |
| 365 | return p2.Sprint(a) |
| 366 | }) |
| 367 | }) |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | func TestPrefixPrinter_SprintlnWithoutDebugger(t *testing.T) { |
| 372 | for _, p := range prefixPrinters { |
nothing calls this directly
no test coverage detected
searching dependent graphs…