mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
30 lines
1.1 KiB
JavaScript
30 lines
1.1 KiB
JavaScript
// test setMultiplicity
|
|
var assert = require('assert');
|
|
var math = require('../../../index');
|
|
|
|
describe('setMultiplicity', function () {
|
|
it('should return the multiplicity on an element of a set', function () {
|
|
assert.deepEqual(math.setMultiplicity(1, [1, 2]), 1);
|
|
assert.deepEqual(math.setMultiplicity(1, []), 0);
|
|
});
|
|
|
|
it('should return the multiplicity on an element of a multiset', function () {
|
|
assert.deepEqual(math.setMultiplicity(1, [1, 1, 2]), 2);
|
|
assert.deepEqual(math.setMultiplicity(1, [1, 2, 1]), 2);
|
|
});
|
|
|
|
it('should return a number', function() {
|
|
assert.equal(math.typeof(math.setMultiplicity(3, [3, 4, 5])), 'number');
|
|
});
|
|
|
|
it('should throw an error in case of invalid number of arguments', function() {
|
|
assert.throws(function () {math.setMultiplicity();}, /TypeError: Too few arguments/);
|
|
assert.throws(function () {math.setMultiplicity(1, [], []);}, /TypeError: Too many arguments/);
|
|
});
|
|
|
|
it('should throw an error in case of invalid order of arguments', function() {
|
|
assert.throws(function () {math.setMultiplicity([], 1);}, /TypeError: Unexpected type of argument/);
|
|
});
|
|
|
|
});
|