You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MikeMcl_decimal.js/test/test.js

123 lines
1.1 KiB

9 years ago
var start = +new Date(),
passed = 0,
total = 0;
console.log('\n Testing decimal.js\n');
[
'abs',
'acos',
'acosh',
'asin',
'asinh',
'atan',
'atan2',
'atanh',
'cbrt',
'ceil',
'clone',
'cmp',
'config',
'cos',
'cosh',
'Decimal',
'div',
'divToInt',
'dpSd',
'exp',
'floor',
'hypot',
'immutability',
9 years ago
'intPow',
'isFiniteEtc',
'ln',
'log',
'log10',
'log2',
'minAndMax',
'minus',
'mod',
'neg',
'plus',
'pow',
'random',
'round',
'sign',
'sin',
'sinh',
'sqrt',
'tan',
'tanh',
'times',
'toBinary',
'toDP',
'toExponential',
'toFixed',
'toFraction',
'toHex',
'toJSON',
'toNearest',
'toNumber',
'toOctal',
'toPrecision',
'toSD',
'toString',
'trunc',
'valueOf',
]
.forEach(function (module) {
require('./modules/' + module);
passed += T.result[0];
total += T.result[1];
});
console.log('\n In total, ' + passed + ' of ' + total + ' tests passed in ' +
((+new Date() - start) / 1000) + ' secs.\n');