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 3353cc8 commit 2a84281Copy full SHA for 2a84281
src/test/java/com/fishercoder/_27Test.java
@@ -1,18 +1,17 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._27;
4
-import com.fishercoder.solutions._734;
5
-import org.junit.BeforeClass;
6
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
7
8
-import static junit.framework.TestCase.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertEquals;
9
10
public class _27Test {
11
private static _27.Solution1 solution1;
12
private static int[] nums;
13
14
- @BeforeClass
15
- public static void setup() {
+ @BeforeEach
+ public void setup() {
16
solution1 = new _27.Solution1();
17
}
18
0 commit comments