We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da6ce3e commit b8c6009Copy full SHA for b8c6009
src/test/java/com/fishercoder/firstthousand/_885Test.java
@@ -1,17 +1,17 @@
1
package com.fishercoder.firstthousand;
2
3
import com.fishercoder.solutions.firstthousand._885;
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 _885Test {
10
private static _885.Solution1 solution1;
11
private static int[][] expected;
12
13
- @BeforeClass
14
- public static void setup() {
+ @BeforeEach
+ public void setup() {
15
solution1 = new _885.Solution1();
16
}
17
0 commit comments