Skip to content

Commit 4c7aaa4

Browse files
add test for 77
1 parent 7433023 commit 4c7aaa4

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.fishercoder;
2+
3+
import com.fishercoder.common.utils.CommonUtils;
4+
import com.fishercoder.solutions._77;
5+
import org.junit.BeforeClass;
6+
import org.junit.Test;
7+
8+
public class _77Test {
9+
private static _77.Solution1 solution1;
10+
11+
@BeforeClass
12+
public static void setup() {
13+
solution1 = new _77.Solution1();
14+
}
15+
16+
@Test
17+
public void test1() {
18+
CommonUtils.printListList(solution1.combine(4, 2));
19+
}
20+
}

0 commit comments

Comments
 (0)