We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d534d9 commit 0bfc3faCopy full SHA for 0bfc3fa
src/test/java/com/fishercoder/_73Test.java
@@ -1,10 +1,10 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._73;
4
-import org.junit.BeforeClass;
5
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
6
7
-import static org.junit.Assert.assertArrayEquals;
+import static org.junit.jupiter.api.Assertions.assertArrayEquals;
8
9
public class _73Test {
10
private static _73.Solution1 solution1;
@@ -14,8 +14,8 @@ public class _73Test {
14
private static int[][] matrix;
15
private static int[][] expected;
16
17
- @BeforeClass
18
- public static void setup() {
+ @BeforeEach
+ public void setup() {
19
solution1 = new _73.Solution1();
20
solution2 = new _73.Solution2();
21
solution3 = new _73.Solution3();
0 commit comments