(b *testing.B)
| 118 | } |
| 119 | |
| 120 | func BenchmarkShuffle(b *testing.B) { |
| 121 | for i := 0; i < b.N; i++ { |
| 122 | _ = CodeShuffle(randomized[i%N]) |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | func BenchmarkShuffleUnroll(b *testing.B) { |
| 127 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected