(b *testing.B)
| 54 | } |
| 55 | |
| 56 | func BenchmarkMinLargeFloatSlice(b *testing.B) { |
| 57 | testData := makeFloatSlice(100000) |
| 58 | b.ResetTimer() |
| 59 | for i := 0; i < b.N; i++ { |
| 60 | _, _ = stats.Min(testData) |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | func BenchmarkMinLargeRandFloatSlice(b *testing.B) { |
| 65 | testData := makeRandFloatSlice(100000) |
nothing calls this directly
no test coverage detected
searching dependent graphs…