(b *testing.B)
| 94 | } |
| 95 | |
| 96 | func BenchmarkCopyBit(b *testing.B) { |
| 97 | for i := 0; i < b.N; i++ { |
| 98 | _ = CodeCopyBit(randomized[i%N]) |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | func BenchmarkCopyBitNonstandard(b *testing.B) { |
| 103 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected