(t *testing.T)
| 415 | } |
| 416 | |
| 417 | func TestPrefixPrinter_WithWriter(t *testing.T) { |
| 418 | for _, p := range prefixPrinters { |
| 419 | t.Run("", func(t *testing.T) { |
| 420 | s := os.Stderr |
| 421 | p2 := p.WithWriter(s) |
| 422 | |
| 423 | testza.AssertEqual(t, s, p2.GetWriter()) |
| 424 | }) |
| 425 | } |
| 426 | } |
| 427 | |
| 428 | func TestPrefixPrinter_GetWriter(t *testing.T) { |
| 429 | for _, p := range prefixPrinters { |
nothing calls this directly
no test coverage detected
searching dependent graphs…