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 c242276 commit 37573a4Copy full SHA for 37573a4
src/test/java/com/fishercoder/_42Test.java
@@ -1,10 +1,10 @@
1
package com.fishercoder;
2
3
import com.fishercoder.solutions._42;
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
/**
10
* Created by fishercoder on 5/13/17.
@@ -13,8 +13,8 @@ public class _42Test {
13
private static _42.Solution1 solution1;
14
private static int[] height;
15
16
- @BeforeClass
17
- public static void setup() {
+ @BeforeEach
+ public void setup() {
18
solution1 = new _42.Solution1();
19
}
20
0 commit comments