-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlattenerTest.java
More file actions
78 lines (67 loc) · 2.87 KB
/
FlattenerTest.java
File metadata and controls
78 lines (67 loc) · 2.87 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import org.junit.Before;
import org.junit.Test;
import static java.util.Arrays.asList;
import static java.util.Collections.emptyList;
import static java.util.Collections.singletonList;
import static org.junit.Assert.assertEquals;
public class FlattenerTest {
private Flattener flattener;
@Before
public void setUp() {
flattener = new Flattener();
}
@Test
public void testFlatListIsPreserved() {
assertEquals(asList(0, '1', "two"), flattener.flatten(asList(0, '1', "two")));
}
@Test
public void testASingleLevelOfNestingWithNoNulls() {
assertEquals(
asList(1, '2', 3, 4, 5, "six", "7", 8),
flattener.flatten(asList(1, asList('2', 3, 4, 5, "six", "7"), 8)));
}
@Test
public void testFiveLevelsOfNestingWithNoNulls() {
assertEquals(
asList(0, '2', 2, "three", '8', 100, "four", 50, "-2"),
flattener.flatten(asList(0,
'2',
asList(asList(2, "three"),
'8',
100,
"four",
singletonList(singletonList(singletonList(50)))), "-2")));
}
@Test
public void testSixLevelsOfNestingWithNoNulls() {
assertEquals(
asList("one", '2', 3, '4', 5, "six", 7, "8"),
flattener.flatten(asList("one",
asList('2',
singletonList(singletonList(3)),
asList('4',
singletonList(singletonList(5))), "six", 7), "8")));
}
@Test
public void testSixLevelsOfNestingWithNulls() {
assertEquals(
asList("0", 2, "two", '3', "8", "one hundred", "negative two"),
flattener.flatten(asList("0",
2,
asList(asList("two", '3'),
"8",
singletonList(singletonList("one hundred")),
null,
singletonList(singletonList(null))),
"negative two")));
}
@Test
public void testNestedListsFullOfNullsOnly() {
assertEquals(emptyList(),
flattener.flatten(asList(null,
singletonList(singletonList(singletonList(null))),
null,
null,
asList(asList(null, null), null), null)));
}
}