(b *testing.B)
| 62 | } |
| 63 | |
| 64 | func BenchmarkMinLargeRandFloatSlice(b *testing.B) { |
| 65 | testData := makeRandFloatSlice(100000) |
| 66 | b.ResetTimer() |
| 67 | for i := 0; i < b.N; i++ { |
| 68 | _, _ = stats.Min(testData) |
| 69 | } |
| 70 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…