File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/test/java/com/fishercoder Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
import com .fishercoder .common .classes .ListNode ;
4
4
import com .fishercoder .common .utils .LinkedListUtils ;
5
5
import com .fishercoder .solutions ._25 ;
6
- import org .junit .BeforeClass ;
7
- import org .junit .Test ;
6
+ import org .junit .jupiter . api . BeforeEach ;
7
+ import org .junit .jupiter . api . Test ;
8
8
9
- import static org .junit .Assert .assertEquals ;
9
+ import static org .junit .jupiter . api . Assertions .assertEquals ;
10
10
11
11
public class _25Test {
12
12
private static _25 .Solution1 solution1 ;
@@ -16,8 +16,8 @@ public class _25Test {
16
16
private static ListNode head ;
17
17
private static int k ;
18
18
19
- @ BeforeClass
20
- public static void setup () {
19
+ @ BeforeEach
20
+ public void setup () {
21
21
solution1 = new _25 .Solution1 ();
22
22
solution2 = new _25 .Solution2 ();
23
23
solution3 = new _25 .Solution3 ();
You can’t perform that action at this time.
0 commit comments