forked from gardncl/elements-of-programming-interviews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddIntegersTest.java
40 lines (30 loc) · 1.03 KB
/
AddIntegersTest.java
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
import org.junit.Test;
public class AddIntegersTest {
private ListNode<Integer> sum;
private ListNode<Integer> a;
private ListNode<Integer> b;
@Test
public void addIntegers1() {
sum = LinkedListUtil.createLinkedList(2);
a = LinkedListUtil.createLinkedList(1);
b = LinkedListUtil.createLinkedList(1);
test(sum, a, b);
}
@Test
public void addIntegers2() {
sum = LinkedListUtil.createLinkedList(4, 2, 0, 1);
a = LinkedListUtil.createLinkedList(2, 1, 5);
b = LinkedListUtil.createLinkedList(2, 1, 5);
test(sum, a, b);
}
@Test
public void addIntegers3() {
sum = LinkedListUtil.createLinkedList(1, 0, 0, 1);
a = LinkedListUtil.createLinkedList(1, 0, 0, 0);
b = LinkedListUtil.createLinkedList(0, 0, 0, 1);
test(sum, a, b);
}
private static void test(ListNode<Integer> sum, ListNode<Integer> a, ListNode<Integer> b) {
LinkedListUtil.assertSameList(sum, AddIntegers.addIntegers(a, b));
}
}