2021-05-10 09:27:55 +00:00
|
|
|
const calculator = require('./calculator');
|
2017-09-20 23:04:46 +00:00
|
|
|
|
2021-03-09 11:12:25 +00:00
|
|
|
describe('add', () => {
|
|
|
|
test('adds 0 and 0', () => {
|
|
|
|
expect(calculator.add(0,0)).toBe(0);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
|
2021-05-10 09:27:55 +00:00
|
|
|
test.skip('adds 2 and 2', () => {
|
2021-03-09 11:12:25 +00:00
|
|
|
expect(calculator.add(2,2)).toBe(4);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
|
2021-05-10 09:27:55 +00:00
|
|
|
test.skip('adds positive numbers', () => {
|
2021-03-09 11:12:25 +00:00
|
|
|
expect(calculator.add(2,6)).toBe(8);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-03-09 11:12:25 +00:00
|
|
|
describe('subtract', () => {
|
2021-05-10 09:27:55 +00:00
|
|
|
test.skip('subtracts numbers', () => {
|
2021-03-09 11:12:25 +00:00
|
|
|
expect(calculator.subtract(10,4)).toBe(6);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-03-09 11:12:25 +00:00
|
|
|
describe('sum', () => {
|
2021-05-10 09:27:55 +00:00
|
|
|
test.skip('computes the sum of an empty array', () => {
|
2021-03-09 11:12:25 +00:00
|
|
|
expect(calculator.sum([])).toBe(0);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
|
2021-05-10 09:27:55 +00:00
|
|
|
test.skip('computes the sum of an array of one number', () => {
|
2021-03-09 11:12:25 +00:00
|
|
|
expect(calculator.sum([7])).toBe(7);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
|
2021-05-10 09:27:55 +00:00
|
|
|
test.skip('computes the sum of an array of two numbers', () => {
|
2021-03-09 11:12:25 +00:00
|
|
|
expect(calculator.sum([7,11])).toBe(18);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
|
2021-05-10 09:27:55 +00:00
|
|
|
test.skip('computes the sum of an array of many numbers', () => {
|
2021-03-09 11:12:25 +00:00
|
|
|
expect(calculator.sum([1,3,5,7,9])).toBe(25);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-03-09 11:12:25 +00:00
|
|
|
describe('multiply', () => {
|
2021-05-10 09:27:55 +00:00
|
|
|
test.skip('multiplies two numbers', () => {
|
2021-03-09 11:12:25 +00:00
|
|
|
expect(calculator.multiply([2,4])).toBe(8);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
|
2021-05-10 09:27:55 +00:00
|
|
|
test.skip('multiplies several numbers', () => {
|
2021-03-09 11:12:25 +00:00
|
|
|
expect(calculator.multiply([2,4,6,8,10,12,14])).toBe(645120);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-03-09 11:12:25 +00:00
|
|
|
describe('power', () => {
|
2021-05-10 09:27:55 +00:00
|
|
|
test.skip('raises one number to the power of another number', () => {
|
2021-03-09 11:12:25 +00:00
|
|
|
expect(calculator.power(4,3)).toBe(64); // 4 to third power is 64
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-03-09 11:12:25 +00:00
|
|
|
describe('factorial', () => {
|
|
|
|
test.skip('computes the factorial of 0', () => {
|
|
|
|
expect(calculator.factorial(0)).toBe(1); // 0! = 1
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
|
2021-03-09 11:12:25 +00:00
|
|
|
test.skip('computes the factorial of 1', () => {
|
|
|
|
expect(calculator.factorial(1)).toBe(1);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
|
2021-03-09 11:12:25 +00:00
|
|
|
test.skip('computes the factorial of 2', () => {
|
|
|
|
expect(calculator.factorial(2)).toBe(2);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
|
2021-03-09 11:12:25 +00:00
|
|
|
test.skip('computes the factorial of 5', () => {
|
|
|
|
expect(calculator.factorial(5)).toBe(120);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
|
|
|
|
2021-03-09 11:12:25 +00:00
|
|
|
test.skip('computes the factorial of 10', () => {
|
|
|
|
expect(calculator.factorial(10)).toBe(3628800);
|
2017-09-20 23:04:46 +00:00
|
|
|
});
|
2018-01-01 14:56:20 +00:00
|
|
|
});
|