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 b6308a5 commit b7e267aCopy full SHA for b7e267a
src/test/java/com/fishercoder/_77Test.java
@@ -2,15 +2,15 @@
2
3
import com.fishercoder.common.utils.CommonUtils;
4
import com.fishercoder.solutions._77;
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 _77Test {
9
private static _77.Solution1 solution1;
10
private static _77.Solution2 solution2;
11
12
- @BeforeClass
13
- public static void setup() {
+ @BeforeEach
+ public void setup() {
14
solution1 = new _77.Solution1();
15
solution2 = new _77.Solution2();
16
}
0 commit comments