8000 add test for 35 · zhahui/fishercoder1534-Leetcode@722f746 · GitHub
[go: up one dir, main page]

Skip to content

Commit 722f746

Browse files
fishercoder1534zhahui
authored andcommitted
add test for 35
1 parent 402a44d commit 722f746

File tree

1 file changed

+23
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)
0