(b *testing.B)
| 59 | } |
| 60 | |
| 61 | func BenchmarkModeLargeRandFloatSlice(b *testing.B) { |
| 62 | lf := makeRandFloatSlice(100000) |
| 63 | b.ResetTimer() |
| 64 | for i := 0; i < b.N; i++ { |
| 65 | _, _ = stats.Mode(lf) |
| 66 | } |
| 67 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…