X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Ftest-utils.js;h=9a49c822991c2629ac45280776604cb3be188a04;hb=3aaed019abde0022e986c1db05db9d5d7bc76594;hp=78218e2668c34bbfef44e680e1e9676eccf7b7cd;hpb=2d2e32c20d55c1b81771659fd81004bd7ca34b73;p=poolifier.git diff --git a/tests/test-utils.js b/tests/test-utils.js index 78218e26..9a49c822 100644 --- a/tests/test-utils.js +++ b/tests/test-utils.js @@ -36,6 +36,15 @@ class TestUtils { }) } + static generateRandomInteger (max = Number.MAX_SAFE_INTEGER, min = 0) { + max = Math.floor(max) + if (min) { + min = Math.ceil(min) + return Math.floor(Math.random() * (max - min + 1)) + min + } + return Math.floor(Math.random() * (max + 1)) + } + static jsonIntegerSerialization (n) { for (let i = 0; i < n; i++) { const o = {