| 1 | import { integralEvaluation } from '../SimpsonIntegration' |
| 2 | |
| 3 | test('Should return the integral of f(x) = sqrt(x) in [1, 3] to be equal 2.797434', () => { |
| 4 | const result = integralEvaluation(16, 1, 3, (x) => { |
nothing calls this directly
no test coverage detected