-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix.spec.js
43 lines (34 loc) · 1.32 KB
/
matrix.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { Matrix } from './matrix';
describe('Matrix', () => {
test('extract row from one number matrix', () => {
expect(new Matrix('1').rows[0]).toEqual([1]);
});
test('can extract row', () => {
expect(new Matrix('1 2\n3 4').rows[1]).toEqual([3, 4]);
});
test('extract row where numbers have different widths', () => {
expect(new Matrix('1 2\n10 20').rows[1]).toEqual([10, 20]);
});
test('can extract row from non-square matrix with no corresponding column', () => {
expect(new Matrix('1 2 3\n4 5 6\n7 8 9\n8 7 6').rows[3]).toEqual([8, 7, 6]);
});
test('extract column from one number matrix', () => {
expect(new Matrix('1').columns[0]).toEqual([1]);
});
test('can extract column', () => {
expect(new Matrix('1 2 3\n4 5 6\n7 8 9').columns[2]).toEqual([3, 6, 9]);
});
test('can extract column from non-square matrix with no corresponding row', () => {
expect(new Matrix('1 2 3 4\n5 6 7 8\n9 8 7 6').columns[3]).toEqual([
4, 8, 6,
]);
});
test('can extract column from non-square matrix with more columns than rows', () => {
expect(new Matrix('1 2 3\n4 5 6').columns[2]).toEqual([3, 6]);
});
test('extract column where numbers have different widths', () => {
expect(new Matrix('89 1903 3\n18 3 1\n9 4 800').columns[1]).toEqual([
1903, 3, 4,
]);
});
});