Skip to content

Commit 7c70688

Browse files
add a test for 209
1 parent 57bccb7 commit 7c70688

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

0 commit comments

Comments
 (0)