File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/test/java/com/fishercoder 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 ;
2
2
3
3
import com .fishercoder .solutions ._34 ;
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 _34Test {
10
10
private static _34 .Solution1 solution1 ;
11
11
private static _34 .Solution2 solution2 ;
12
12
private static _34 .Solution3 solution3 ;
13
13
private static int [] nums ;
14
14
15
- @ BeforeClass
16
- public static void setup () {
15
+ @ BeforeEach
16
+ public void setup () {
17
17
solution1 = new _34 .Solution1 ();
18
18
solution2 = new _34 .Solution2 ();
19
19
solution3 = new _34 .Solution3 ();
You can’t perform that action at this time.
0 commit comments