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 fd6a01f commit 3718049Copy full SHA for 3718049
src/test/java/com/fishercoder/_11Test.java
@@ -1,19 +1,19 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._11;
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.Assert.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertEquals;
8
9
public class _11Test {
10
private static _11.Solution1 solution1;
11
private static _11.Solution2 solution2;
12
private static int[] height;
13
private static int expected;
14
15
- @BeforeClass
16
- public static void setup() {
+ @BeforeEach
+ public void setup() {
17
solution1 = new _11.Solution1();
18
solution2 = new _11.Solution2();
19
}
0 commit comments