(b *testing.B)
| 27 | } |
| 28 | |
| 29 | func BenchmarkMeanSmallFloatSlice(b *testing.B) { |
| 30 | for i := 0; i < b.N; i++ { |
| 31 | _, _ = stats.Mean(makeFloatSlice(5)) |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | func BenchmarkMeanLargeFloatSlice(b *testing.B) { |
| 36 | lf := makeFloatSlice(100000) |
nothing calls this directly
no test coverage detected
searching dependent graphs…