We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2032e20 commit ac5e924Copy full SHA for ac5e924
src/test/java/com/fishercoder/_58Test.java
@@ -1,16 +1,16 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._58;
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 _58Test {
10
private static _58.Solution1 solution1;
11
12
- @BeforeClass
13
- public static void setup() {
+ @BeforeEach
+ public void setup() {
14
solution1 = new _58.Solution1();
15
}
16
0 commit comments