(t *testing.T)
| 168 | } |
| 169 | |
| 170 | func TestPrefixPrinter_WithShowLineNumber(t *testing.T) { |
| 171 | for _, p := range prefixPrinters { |
| 172 | t.Run("", func(t *testing.T) { |
| 173 | p2 := p.WithShowLineNumber() |
| 174 | |
| 175 | testza.AssertEqual(t, true, p2.ShowLineNumber) |
| 176 | }) |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | func TestPrefixPrinter_WithMessageStyle(t *testing.T) { |
| 181 | for _, p := range prefixPrinters { |
nothing calls this directly
no test coverage detected
searching dependent graphs…