We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73c484b commit 9b32ed7Copy full SHA for 9b32ed7
src/test/java/com/fishercoder/_66Test.java
@@ -1,19 +1,18 @@
1
package com.fishercoder;
2
3
-import static org.junit.Assert.assertArrayEquals;
4
-
5
-import org.junit.BeforeClass;
6
-import org.junit.Test;
7
8
import com.fishercoder.solutions._66;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertArrayEquals;
9
10
public class _66Test {
11
private static _66.Solution1 solution1;
12
private static _66.Solution2 solution2;
13
private static int[] digits;
14
15
- @BeforeClass
16
- public static void setup() {
+ @BeforeEach
+ public void setup() {
17
solution1 = new _66.Solution1();
18
solution2 = new _66.Solution2();
19
}
0 commit comments