(b *testing.B)
| 130 | } |
| 131 | |
| 132 | func BenchmarkTable2(b *testing.B) { |
| 133 | for i := 0; i < b.N; i++ { |
| 134 | _ = CodeTable2(randomized[i%N]) |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | func BenchmarkPackNybble(b *testing.B) { |
| 139 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected