(b *testing.B)
| 303 | } |
| 304 | |
| 305 | func BenchmarkNormalizeWhitespace_ManyChanges(b *testing.B) { |
| 306 | content := "line1 \t \nline2 \t \nline3 \t \n\n\n" |
| 307 | for b.Loop() { |
| 308 | NormalizeWhitespace(content) |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | func TestParseVersionValue(t *testing.T) { |
| 313 | tests := []struct { |
nothing calls this directly
no test coverage detected