8000 migrate _24 test to Junit5 · githubniraj/Leetcode@8fbf24c · GitHub
[go: up one dir, main page]

Skip to content

Commit 8fbf24c

Browse files
migrate _24 test to Junit5
1 parent 472bc6c commit 8fbf24c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/test/java/com/fishercoder/_24Test.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
import com.fishercoder.common.classes.ListNode;
44
import com.fishercoder.common.utils.LinkedListUtils;
55
import com.fishercoder.solutions._24;
6-
import org.junit.BeforeClass;
7-
import org.junit.Test;
6+
import org.junit.jupiter.api.BeforeEach;
7+
import org.junit.jupiter.api.Test;
88

99
import java.util.Arrays;
1010

11-
import static org.junit.Assert.assertEquals;
11+
import static org.junit.jupiter.api.Assertions.assertEquals;
1212

1313
public class _24Test {
1414
private static _24.Solution1 solution1;
1515
private static _24.Solution2 solution2;
1616
private static ListNode head;
1717
private static ListNode expected;
1818

19-
@BeforeClass
20-
public static void setup() {
19+
@BeforeEach
20+
public void setup() {
2121
solution1 = new _24.Solution1();
2222
solution2 = new _24.Solution2();
2323
}

0 commit comments

Comments
 (0)
0