We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccab813 commit d94f8c6Copy full SHA for d94f8c6
src/test/java/com/fishercoder/_47Test.java
@@ -2,8 +2,8 @@
2
3
import com.fishercoder.common.utils.CommonUtils;
4
import com.fishercoder.solutions._47;
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 java.util.List;
9
@@ -12,8 +12,8 @@ public class _47Test {
12
private static _47.Solution2 solution2;
13
private static List<List<Integer>> actual;
14
15
- @BeforeClass
16
- public static void setup() {
+ @BeforeEach
+ public void setup() {
17
solution1 = new _47.Solution1();
18
solution2 = new _47.Solution2();
19
}
0 commit comments