We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7036631 commit b6308a5Copy full SHA for b6308a5
src/test/java/com/fishercoder/_76Test.java
@@ -1,10 +1,10 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._76;
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 _76Test {
10
private static _76.Solution1 solution1;
@@ -13,8 +13,8 @@ public class _76Test {
13
private static String s;
14
private static String t;
15
16
- @BeforeClass
17
- public static void setup() {
+ @BeforeEach
+ public void setup() {
18
solution1 = new _76.Solution1();
19
solution2 = new _76.Solution2();
20
}
0 commit comments