Skip to content

Commit 25f04b7

Browse files
add test for 1
1 parent ef36b62 commit 25f04b7

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._1;
4+
import org.junit.BeforeClass;
5+
import org.junit.Test;
6+
7+
import static org.junit.Assert.assertArrayEquals;
8+
9+
public class _1Test {
10+
private static _1.Solution1 solution1;
11+
private static int[] nums;
12+
13+
@BeforeClass
14+
public static void setup() {
15+
solution1 = new _1.Solution1();
16+
}
17+
18+
@Test
19+
public void test1() {
20+
nums = new int[]{2, 7, 11, 15};
21+
assertArrayEquals(new int[]{0, 1}, solution1.twoSum(nums, 9));
22+
}
23+
24+
}

0 commit comments

Comments
 (0)