We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d94f8c6 commit af69586Copy full SHA for af69586
src/test/java/com/fishercoder/_48Test.java
@@ -2,17 +2,17 @@
2
3
import com.fishercoder.common.utils.CommonUtils;
4
import com.fishercoder.solutions._48;
5
-import org.junit.BeforeClass;
6
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
7
8
public class _48Test {
9
private static _48.Solution1 solution1;
10
private static _48.Solution2 solution2;
11
private static _48.Solution3 solution3;
12
private static int[][] matrix;
13
14
- @BeforeClass
15
- public static void setup() {
+ @BeforeEach
+ public void setup() {
16
solution1 = new _48.Solution1();
17
solution2 = new _48.Solution2();
18
solution3 = new _48.Solution3();
0 commit comments