(t *testing.T)
| 142 | } |
| 143 | |
| 144 | func TestSprintfWithNewLineEnding(t *testing.T) { |
| 145 | for _, p := range prefixPrinters { |
| 146 | t.Run("", func(t *testing.T) { |
| 147 | testza.AssertNotContains(t, "\n\n", p.Sprintf("%s\n\n\n\n", "Hello, World!")) |
| 148 | }) |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | func TestPrefixPrinter_GetFormattedPrefix(t *testing.T) { |
| 153 | for _, p := range prefixPrinters { |
nothing calls this directly
no test coverage detected
searching dependent graphs…