diff options
author | RaindropsSys <contact@minteck.org> | 2023-06-22 23:06:12 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-06-22 23:06:12 +0200 |
commit | 23563c7188e089929b60f9e10721c6fc43a220ff (patch) | |
tree | edfe2b009c82900d4ac27db02222d2f68dcad846 /includes/external/school/node_modules/cuint/test/UINT32_toNumber-test.js | |
parent | 7a7a49332df7c852abbaa33c7e8e87f93d064d61 (diff) | |
download | pluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.tar.gz pluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.tar.bz2 pluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.zip |
Updated 15 files, added includes/maintenance/deleteUnusedAssets.php and deleted 4944 files (automated)
Diffstat (limited to 'includes/external/school/node_modules/cuint/test/UINT32_toNumber-test.js')
-rw-r--r-- | includes/external/school/node_modules/cuint/test/UINT32_toNumber-test.js | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/includes/external/school/node_modules/cuint/test/UINT32_toNumber-test.js b/includes/external/school/node_modules/cuint/test/UINT32_toNumber-test.js deleted file mode 100644 index a80c557..0000000 --- a/includes/external/school/node_modules/cuint/test/UINT32_toNumber-test.js +++ /dev/null @@ -1,63 +0,0 @@ -var assert = require('assert') -var UINT32 = require('..').UINT32 - -describe('toNumber method', function () { - - describe('from 0', function () { - - it('should return 0', function (done) { - var u = UINT32(0).toNumber() - - assert.equal( u, 0 ) - done() - }) - - }) - - describe('from low bit number', function () { - - it('should return the number', function (done) { - var u = UINT32(123).toNumber() - - assert.equal( u, 123 ) - done() - }) - - }) - - describe('from high bit number', function () { - - it('should return the number', function (done) { - var n = Math.pow(2,17) - var u = UINT32(n).toNumber() - - assert.equal( u, n ) - done() - }) - - }) - - describe('from high and low bit number', function () { - - it('should return the number', function (done) { - var n = Math.pow(2,17) + 123 - var u = UINT32(n).toNumber() - - assert.equal( u, n ) - done() - }) - - }) - - describe('toNumber and toString', function () { - - it('should return the same result for 100 random numbers', function () { - for (var i=0; i<100; i++) { - var u = UINT32(Math.floor(Math.random() * 0xffffffff)); - assert.equal(u.toNumber(), parseInt(u.toString())); - } - }) - - }) - -}) |