(b *testing.B)
| 167 | } |
| 168 | |
| 169 | func BenchmarkNormalizeWhitespace(b *testing.B) { |
| 170 | content := "line1 \nline2\t\nline3 \t\nline4\n\n" |
| 171 | for b.Loop() { |
| 172 | NormalizeWhitespace(content) |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | // Additional edge case tests |
| 177 |
nothing calls this directly
no test coverage detected