File tree 2 files changed +5
-6
lines changed
src/test/java/com/fishercoder
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 9
9
import static org .junit .jupiter .api .Assertions .assertEquals ;
10
10
11
11
public class _54Test {
12
-
13
12
private static _54 .Solution1 solution1 ;
14
13
private static int [][] matrix ;
15
14
Original file line number Diff line number Diff line change 1
1
package com .fishercoder ;
2
2
3
3
import com .fishercoder .solutions ._55 ;
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 .assertEquals ;
7
+ import static org .junit .jupiter . api . Assertions .assertEquals ;
8
8
9
9
public class _55Test {
10
10
private static _55 .Solution1 solution1 ;
@@ -13,8 +13,8 @@ public class _55Test {
13
13
private static _55 .Solution4 solution4 ;
14
14
private static int [] nums ;
15
15
16
- @ BeforeClass
17
- public static void setup () {
16
+ @ BeforeEach
17
+ public void setup () {
18
18
solution1 = new _55 .Solution1 ();
19
19
solution2 = new _55 .Solution2 ();
20
20
solution3 = new _55 .Solution3 ();
You can’t perform that action at this time.
0 commit comments