(t *testing.T)
| 30 | } |
| 31 | |
| 32 | func TestMask(t *testing.T) { |
| 33 | t.Parallel() |
| 34 | |
| 35 | testMask(t, "basicMask", basicMask) |
| 36 | testMask(t, "maskGo", maskGo) |
| 37 | testMask(t, "basicMask2", basicMask2) |
| 38 | } |
| 39 | |
| 40 | func testMask(t *testing.T, name string, fn func(b []byte, key uint32) uint32) { |
| 41 | t.Run(name, func(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…