8000
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 6da3da0 commit 2560e0bCopy full SHA for 2560e0b
src/test/java/com/fishercoder/_56Test.java
@@ -1,18 +1,18 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._56;
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 _56Test {
10
private static _56.Solution1 solution1;
11
private static int[][] intervals;
12
private static int[][] expected;
13
14
- @BeforeClass
15
- public static void setup() {
+ @BeforeEach
+ public void setup() {
16
solution1 = new _56.Solution1();
17
}
18
0 commit comments