11package com .fishercoder .fourththousand ;
22
3+ import static org .junit .jupiter .api .Assertions .assertFalse ;
4+ import static org .junit .jupiter .api .Assertions .assertTrue ;
5+
36import com .fishercoder .solutions .fourththousand ._3349 ;
7+ import java .util .Arrays ;
48import org .junit .jupiter .api .BeforeEach ;
59import org .junit .jupiter .api .Test ;
610
7- import java .util .Arrays ;
8-
9- import static org .junit .jupiter .api .Assertions .assertFalse ;
10- import static org .junit .jupiter .api .Assertions .assertTrue ;
11-
1211public class _3349Test {
1312private _3349 .Solution1 solution1 ;
1413
@@ -19,17 +18,18 @@ public void setup() {
1918
2019@ Test
2120public void test1 () {
22- assertTrue (solution1 .hasIncreasingSubarrays (Arrays .asList (2 ,5 ,7 ,8 ,9 ,2 ,3 ,4 ,3 ,1 ),3 ));
21+ assertTrue (
22+ solution1 .hasIncreasingSubarrays (Arrays .asList (2 ,5 ,7 ,8 ,9 ,2 ,3 ,4 ,3 ,1 ),3 ));
2323 }
2424
2525@ Test
2626public void test2 () {
27- assertFalse (solution1 .hasIncreasingSubarrays (Arrays .asList (1 ,2 ,3 ,4 ,4 ,4 ,4 ,5 ,6 ,7 ),5 ));
27+ assertFalse (
28+ solution1 .hasIncreasingSubarrays (Arrays .asList (1 ,2 ,3 ,4 ,4 ,4 ,4 ,5 ,6 ,7 ),5 ));
2829 }
2930
3031@ Test
3132public void test3 () {
3233assertTrue (solution1 .hasIncreasingSubarrays (Arrays .asList (5 ,8 , -2 , -1 ),2 ));
3334 }
34-
3535}