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 37573a4 commit a83c7b3Copy full SHA for a83c7b3
src/test/java/com/fishercoder/_43Test.java
@@ -1,10 +1,10 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._43;
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 _43Test {
10
private static _43.Solution1 solution1;
@@ -13,8 +13,8 @@ public class _43Test {
13
private static String num1;
14
private static String num2;
15
16
- @BeforeClass
17
- public static void setup() {
+ @BeforeEach
+ public void setup() {
18
solution1 = new _43.Solution1();
19
solution2 = new _43.Solution2();
20
}
0 commit comments