mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
28 lines
706 B
JavaScript
28 lines
706 B
JavaScript
/**
|
|
* mathjs test
|
|
*/
|
|
|
|
// TODO: use nodeunit for testings
|
|
|
|
// test data types
|
|
require('./type/complex.js');
|
|
require('./type/unit.js');
|
|
require('./type/matrix.js');
|
|
|
|
// test functions
|
|
require('./function/arithmetic.js');
|
|
require('./function/complex.js');
|
|
require('./function/matrix.js');
|
|
require('./function/probability.js');
|
|
require('./function/statistics.js');
|
|
require('./function/trigonometry.js');
|
|
require('./function/units.js');
|
|
require('./function/util.js');
|
|
|
|
// TODO: test Parser
|
|
// TODO: test Workspace
|
|
// TODO: test Scope
|
|
// TODO: test Node, Assignment, Block, Constant, FunctionAssignment, Symbol, ArrayNode
|
|
|
|
// TODO: test minified library, for example on math.typeof(new Complex()) -> 'Complex'
|