(b *testing.B)
| 100 | } |
| 101 | |
| 102 | func BenchmarkCopyBitNonstandard(b *testing.B) { |
| 103 | for i := 0; i < b.N; i++ { |
| 104 | _ = CodeCopyBitNonstandard(randomized[i%N]) |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | func BenchmarkCount(b *testing.B) { |
| 109 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected