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 347a4da commit bd40c63Copy full SHA for bd40c63
src/test/java/com/fishercoder/secondthousand/_1508Test.java
@@ -1,16 +1,16 @@
1
package com.fishercoder.secondthousand;
2
3
import com.fishercoder.solutions.secondthousand._1508;
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 junit.framework.TestCase.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertEquals;
8
9
public class _1508Test {
10
private static _1508.Solution1 solution1;
11
12
- @BeforeClass
13
- public static void setup() {
+ @BeforeEach
+ public void setup() {
14
solution1 = new _1508.Solution1();
15
}
16
0 commit comments