We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a054d47 commit 775aadeCopy full SHA for 775aade
src/test/java/com/fishercoder/_54Test.java
@@ -1,21 +1,20 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._54;
4
+import org.junit.jupiter.api.BeforeEach;
5
+import org.junit.jupiter.api.Test;
6
7
import java.util.Arrays;
8
-import org.junit.BeforeClass;
-import org.junit.Test;
9
-
10
-import static org.junit.Assert.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertEquals;
11
12
public class _54Test {
13
14
private static _54.Solution1 solution1;
15
private static int[][] matrix;
16
17
- @BeforeClass
18
- public static void setup() {
+ @BeforeEach
+ public void setup() {
19
solution1 = new _54.Solution1();
20
}
21
0 commit comments