-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path_965Test.java
46 lines (38 loc) · 1.21 KB
/
_965Test.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
41
42
43
44
45
46
package com.fishercoder;
import com.fishercoder.common.classes.TreeNode;
import com.fishercoder.common.utils.TreeUtils;
import com.fishercoder.solutions._965;
import org.junit.BeforeClass;
import org.junit.Test;
import java.util.Arrays;
import static org.junit.Assert.assertEquals;
public class _965Test {
private static _965.Solution1 solution1;
private static _965.Solution2 solution2;
private static TreeNode root;
@BeforeClass
public static void setup() {
solution1 = new _965.Solution1();
solution2 = new _965.Solution2();
}
@Test
public void test1() {
root = TreeUtils.constructBinaryTree(Arrays.asList(1, 1, 1, 1, 1, null, 1));
assertEquals(true, solution1.isUnivalTree(root));
}
@Test
public void test2() {
root = TreeUtils.constructBinaryTree(Arrays.asList(2, 2, 2, 5, 2));
assertEquals(false, solution1.isUnivalTree(root));
}
@Test
public void test3() {
root = TreeUtils.constructBinaryTree(Arrays.asList(-1, -1, -1, -1, -1, -1, -1));
assertEquals(true, solution2.isUnivalTree(root));
}
@Test
public void test4() {
root = TreeUtils.constructBinaryTree(Arrays.asList(2, 2, 2, 2, 2, 2, 1));
assertEquals(false, solution2.isUnivalTree(root));
}
}