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 fefcd45 commit 3353cc8Copy full SHA for 3353cc8
src/test/java/com/fishercoder/_26Test.java
@@ -1,18 +1,18 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._26;
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 _26Test {
10
private static _26.Solution1 solution1;
11
private static _26.Solution2 solution2;
12
private static int[] nums;
13
14
- @BeforeClass
15
- public static void setup() {
+ @BeforeEach
+ public void setup() {
16
solution1 = new _26.Solution1();
17
solution2 = new _26.Solution2();
18
}
0 commit comments