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