We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6938ce commit 1a654f0Copy full SHA for 1a654f0
src/test/java/com/fishercoder/_2001Test.java
@@ -2,17 +2,17 @@
2
3
import com.fishercoder.common.utils.CommonUtils;
4
import com.fishercoder.solutions.thirdthousand._2001;
5
-import org.junit.BeforeClass;
6
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
7
8
-import static org.junit.Assert.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertEquals;
9
10
public class _2001Test {
11
private static _2001.Solution1 solution1;
12
private static _2001.Solution2 solution2;
13
14
- @BeforeClass
15
- public static void setup() {
+ @BeforeEach
+ public void setup() {
16
solution1 = new _2001.Solution1();
17
solution2 = new _2001.Solution2();
18
}
0 commit comments