deno.land / x / simplestatistic@v7.7.1 / test / harmonic_mean.test.js

harmonic_mean.test.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* eslint no-shadow: 0 */
const test = require("tap").test;const ss = require("../");
function rnd(x) { return Math.round(x * 1000) / 1000;}
test("harmonicMean", function (t) { // From http://en.wikipedia.org/wiki/Harmonic_mean t.test("can get the mean of two or more numbers", function (t) { t.equal(ss.harmonicMean([1, 1]), 1); t.equal(rnd(ss.harmonicMean([2, 3])), 2.4); t.equal(ss.harmonicMean([1, 2, 4]), 12 / 7); t.end(); });
t.test("cannot calculate for empty lists", function (t) { t.throws(function () { ss.harmonicMean([]); }); t.end(); });
t.test("cannot calculate for lists with negative numbers", function (t) { t.throws(function () { ss.harmonicMean([-1]); }); t.end(); }); t.end();});
simplestatistic

Version Info

Tagged at
2 years ago