File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/test/java/com/fishercoder/firstthousand Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
package com .fishercoder .firstthousand ;
2
2
3
3
import com .fishercoder .solutions .firstthousand ._985 ;
4
- import org .junit .BeforeClass ;
5
- import org .junit .Test ;
4
+ import org .junit .jupiter . api . BeforeEach ;
5
+ import org .junit .jupiter . api . Test ;
6
6
7
- import static org .junit .Assert .assertArrayEquals ;
7
+ import static org .junit .jupiter . api . Assertions .assertArrayEquals ;
8
8
9
9
public class _985Test {
10
10
private static _985 .Solution1 solution1 ;
@@ -13,8 +13,8 @@ public class _985Test {
13
13
private static int [] A ;
14
14
private static int [][] queries ;
15
15
16
- @ BeforeClass
17
- public static void setup () {
16
+ @ BeforeEach
17
+ public void setup () {
18
18
solution1 = new _985 .Solution1 ();
19
19
}
20
20
You can’t perform that action at this time.
0 commit comments