We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bce1973 commit 8be01e9Copy full SHA for 8be01e9
src/test/java/com/fishercoder/firstthousand/_985Test.java
@@ -1,10 +1,10 @@
1
package com.fishercoder.firstthousand;
2
3
import com.fishercoder.solutions.firstthousand._985;
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 _985Test {
10
private static _985.Solution1 solution1;
@@ -13,8 +13,8 @@ public class _985Test {
13
private static int[] A;
14
private static int[][] queries;
15
16
- @BeforeClass
17
- public static void setup() {
+ @BeforeEach
+ public void setup() {
18
solution1 = new _985.Solution1();
19
}
20
0 commit comments