dichotomie.spec.ts 445 bytes
/// <reference path="../node_modules/@types/jasmine/index.d.ts" />
import { nub } from "./nubtest";
import { Dichotomie } from "../src/dichotomie"
let dicho: Dichotomie = new Dichotomie(nub, "A");
describe('Class Dichotomie: ', () => {
    describe('Dichotomie(3, 1E-6, 0): ', () => {
        it('should return a result close to 1', () => {
            expect(dicho.Dichotomie(3, 1E-6, 0).vCalc).toBeCloseTo(1, 1E-6);
        });
    });
});