(b *testing.B)
| 53 | return tests |
| 54 | } |
| 55 | func BenchmarkMeanUsingAndXor(b *testing.B) { |
| 56 | for i := 0; i < b.N; i++ { |
| 57 | MeanUsingAndXor(222, 888) |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | func BenchmarkMeanUsingRightShift(b *testing.B) { |
| 62 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected