Skip to content

Commit 7dda718

Browse files
committed
🧪 test: 新增链表单元测试
1 parent 1bbb774 commit 7dda718

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

test/listNode.spec.ts

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { test, expect, describe } from 'vitest';
2+
const ListNode = require('../common/structures/ListNode');
3+
4+
test('toArray 正常数组', () => {
5+
// 创建链表
6+
const head = new ListNode(1);
7+
const node1 = new ListNode(2);
8+
const node2 = new ListNode(3);
9+
head.next = node1;
10+
node1.next = node2;
11+
12+
const arr = ListNode.toArray(head)
13+
expect(arr).toEqual([1, 2, 3])
14+
})
15+
test('toArray undefined', () => {
16+
const arr = ListNode.toArray(undefined)
17+
expect(arr).toEqual([])
18+
})
19+
test('toArray false', () => {
20+
const arr = ListNode.toArray(false)
21+
expect(arr).toEqual([undefined])
22+
})
23+
test('toArray 1', () => {
24+
const arr = ListNode.toArray(1)
25+
expect(arr).toEqual([undefined])
26+
})

0 commit comments

Comments
 (0)