X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=test%2Futils%2FUtilsTest.ts;h=5732e57ed316673e1cbc538d9b853a0c33d90665;hb=4f9327bf63123fa94e86b027ad1ab9b0a22c3500;hp=f5e1259db9a95200eafc188116977a2b4aca03b8;hpb=806fe296b3050d3b70adf95b8ac837568efd2d13;p=e-mobility-charging-stations-simulator.git diff --git a/test/utils/UtilsTest.ts b/test/utils/UtilsTest.ts index f5e1259d..5732e57e 100644 --- a/test/utils/UtilsTest.ts +++ b/test/utils/UtilsTest.ts @@ -329,28 +329,4 @@ describe('Utils test suite', () => { expect(Utils.isEmptyObject(new WeakMap())).toBe(false); expect(Utils.isEmptyObject(new WeakSet())).toBe(false); }); - - it('Verify median()', () => { - expect(Utils.median([])).toBe(0); - expect(Utils.median([0.08])).toBe(0.08); - expect(Utils.median([0.25, 4.75, 3.05, 6.04, 1.01, 2.02, 5.03])).toBe(3.05); - expect(Utils.median([0.25, 4.75, 3.05, 6.04, 1.01, 2.02])).toBe(2.535); - }); - - it('Verify percentile()', () => { - expect(Utils.percentile([], 25)).toBe(0); - expect(Utils.percentile([0.08], 50)).toBe(0.08); - const array0 = [0.25, 4.75, 3.05, 6.04, 1.01, 2.02, 5.03]; - expect(Utils.percentile(array0, 0)).toBe(0.25); - expect(Utils.percentile(array0, 50)).toBe(3.05); - expect(Utils.percentile(array0, 80)).toBe(4.974); - expect(Utils.percentile(array0, 85)).toBe(5.131); - expect(Utils.percentile(array0, 90)).toBe(5.434); - expect(Utils.percentile(array0, 95)).toBe(5.736999999999999); - expect(Utils.percentile(array0, 100)).toBe(6.04); - }); - - it('Verify stdDeviation()', () => { - expect(Utils.stdDeviation([0.25, 4.75, 3.05, 6.04, 1.01, 2.02, 5.03])).toBe(2.0256064851429216); - }); });