Skip to content

Commit f533be9

Browse files
add test for 216
1 parent accded4 commit f533be9

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package com.fishercoder;
2+
3+
import com.fishercoder.solutions._216;
4+
import org.junit.BeforeClass;
5+
import org.junit.Test;
6+
7+
import java.util.Arrays;
8+
9+
import static org.junit.Assert.assertEquals;
10+
11+
public class _216Test {
12+
private static _216.Solution1 solution1;
13+
private static int k;
14+
private static int n;
15+
16+
@BeforeClass
17+
public static void setup() {
18+
solution1 = new _216.Solution1();
19+
}
20+
21+
@Test
22+
public void test1() {
23+
k = 3;
24+
n = 7;
25+
assertEquals(Arrays.asList(Arrays.asList(1, 2, 4)), solution1.combinationSum3(k, n));
26+
}
27+
28+
}

0 commit comments

Comments
 (0)