forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_1009Test.java
More file actions
42 lines (32 loc) · 841 Bytes
/
_1009Test.java
File metadata and controls
42 lines (32 loc) · 841 Bytes
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
package com.fishercoder;
import com.fishercoder.solutions._1009;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class _1009Test {
private static _1009.Solution1 solution1;
@BeforeClass
public static void setup() {
solution1 = new _1009.Solution1();
}
@Test
public void test1() {
assertEquals(2, solution1.bitwiseComplement(5));
}
@Test
public void test2() {
assertEquals(5, solution1.bitwiseComplement(10));
}
@Test
public void test3() {
assertEquals(0, solution1.bitwiseComplement(7));
}
@Test
public void test4() {
assertEquals(3, solution1.bitwiseComplement(12));
}
@Test
public void test5() {
assertEquals(1, solution1.bitwiseComplement(0));
}
}