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 43d1d3b commit 3e0ed6bCopy full SHA for 3e0ed6b
src/test/java/com/fishercoder/_32Test.java
@@ -1,17 +1,17 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._32;
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 _32Test {
10
private static _32.Solution1 solution1;
11
private static _32.Solution2 solution2;
12
13
- @BeforeClass
14
- public static void setup() {
+ @BeforeEach
+ public void setup() {
15
solution1 = new _32.Solution1();
16
solution2 = new _32.Solution2();
17
}
0 commit comments