odin-default-js-exercises/08_calculator/solution/calculator-solution.spec.js

78 lines
1.8 KiB
JavaScript
Raw Normal View History

2023-02-01 23:53:54 +00:00
const calculator = require('./calculator-solution');
2022-02-20 19:07:44 +00:00
2023-02-01 23:53:54 +00:00
describe('add', () => {
test('adds 0 and 0', () => {
2023-01-21 17:53:41 +00:00
expect(calculator.add(0, 0)).toBe(0);
});
2022-02-20 19:07:44 +00:00
2023-02-01 23:58:58 +00:00
test('adds 2 and 2', () => {
2023-01-21 17:53:41 +00:00
expect(calculator.add(2, 2)).toBe(4);
});
2022-02-20 19:07:44 +00:00
2023-02-01 23:58:58 +00:00
test('adds positive numbers', () => {
2023-01-21 17:53:41 +00:00
expect(calculator.add(2, 6)).toBe(8);
});
2022-02-20 19:07:44 +00:00
});
2023-02-01 23:53:54 +00:00
describe('subtract', () => {
2023-02-01 23:58:58 +00:00
test('subtracts numbers', () => {
2023-01-21 17:53:41 +00:00
expect(calculator.subtract(10, 4)).toBe(6);
});
2022-02-20 19:07:44 +00:00
});
2023-02-01 23:53:54 +00:00
describe('sum', () => {
test('computes the sum of an empty parameter', () => {
expect(calculator.sum()).toBe(0);
2023-01-21 17:53:41 +00:00
});
2022-02-20 19:07:44 +00:00
test('computes the sum of one number', () => {
expect(calculator.sum(7)).toBe(7);
2023-01-21 17:53:41 +00:00
});
2022-02-20 19:07:44 +00:00
test('computes the sum of two numbers', () => {
expect(calculator.sum(7, 11)).toBe(18);
2023-01-21 17:53:41 +00:00
});
2022-02-20 19:07:44 +00:00
test('computes the sum of many numbers', () => {
expect(calculator.sum(1, 3, 5, 7, 9)).toBe(25);
2023-01-21 17:53:41 +00:00
});
2022-02-20 19:07:44 +00:00
});
2023-02-01 23:53:54 +00:00
describe('multiply', () => {
2023-02-01 23:58:58 +00:00
test('multiplies two numbers', () => {
expect(calculator.multiply(2, 4)).toBe(8);
2023-01-21 17:53:41 +00:00
});
2022-02-20 19:07:44 +00:00
2023-02-01 23:58:58 +00:00
test('multiplies several numbers', () => {
expect(calculator.multiply(2, 4, 6, 8, 10, 12, 14)).toBe(645120);
2023-01-21 17:53:41 +00:00
});
2022-02-20 19:07:44 +00:00
});
2023-02-01 23:53:54 +00:00
describe('power', () => {
2023-02-01 23:58:58 +00:00
test('raises one number to the power of another number', () => {
2023-01-21 17:53:41 +00:00
expect(calculator.power(4, 3)).toBe(64); // 4 to third power is 64
});
2022-02-20 19:07:44 +00:00
});
2023-02-01 23:53:54 +00:00
describe('factorial', () => {
2023-02-01 23:58:58 +00:00
test('computes the factorial of 0', () => {
2023-01-21 17:53:41 +00:00
expect(calculator.factorial(0)).toBe(1); // 0! = 1
});
2022-02-20 19:07:44 +00:00
2023-02-01 23:58:58 +00:00
test('computes the factorial of 1', () => {
2023-01-21 17:53:41 +00:00
expect(calculator.factorial(1)).toBe(1);
});
2022-02-20 19:07:44 +00:00
2023-02-01 23:58:58 +00:00
test('computes the factorial of 2', () => {
2023-01-21 17:53:41 +00:00
expect(calculator.factorial(2)).toBe(2);
});
2022-02-20 19:07:44 +00:00
2023-02-01 23:58:58 +00:00
test('computes the factorial of 5', () => {
2023-01-21 17:53:41 +00:00
expect(calculator.factorial(5)).toBe(120);
});
2022-02-20 19:07:44 +00:00
2023-02-01 23:58:58 +00:00
test('computes the factorial of 10', () => {
2023-01-21 17:53:41 +00:00
expect(calculator.factorial(10)).toBe(3628800);
});
2022-02-20 19:07:44 +00:00
});