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