8000
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 fdd594a commit 6bbb316Copy full SHA for 6bbb316
src/test/java/com/fishercoder/_4Test.java
@@ -1,19 +1,19 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._4;
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.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertEquals;
8
9
public class _4Test {
10
private static _4.Solution1 solution1;
11
private static _4.Solution2 solution2;
12
private static int[] A;
13
private static int[] B;
14
15
- @BeforeClass
16
- public static void setup() {
+ @BeforeEach
+ public void setup() {
17
solution1 = new _4.Solution1();
18
solution2 = new _4.Solution2();
19
}
0 commit comments