Skip to content

Commit 3f89915

Browse files
add test for 16
1 parent 5496c81 commit 3f89915

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package com.fishercoder;
2+
3+
import com.fishercoder.solutions._16;
4+
import org.junit.BeforeClass;
5+
import org.junit.Test;
6+
7+
import static org.junit.Assert.assertEquals;
8+
9+
public class _16Test {
10+
private static _16.Solution1 solution1;
11+
private static int[] nums;
12+
13+
@BeforeClass
14+
public static void setup() {
15+
solution1 = new _16.Solution1();
16+
}
17+
18+
@Test
19+
public void test1() {
20+
nums = new int[]{-1, 2, 1, -4};
21+
assertEquals(2, solution1.threeSumClosest(nums, 1));
22+
}
23+
24+
}

0 commit comments

Comments
 (0)