Skip to content

Commit 3ec7627

Browse files
committed
Upgraded test from junit 4 to junit 5
1 parent e1382c1 commit 3ec7627

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/com/thealgorithms/datastructures/lists/SortedlinkedListTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package com.thealgorithms.datastructures.lists;
22

3-
import static org.junit.Assert.assertEquals;
4-
import static org.junit.Assert.assertFalse;
5-
import static org.junit.Assert.assertTrue;
3+
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertFalse;
5+
import static org.junit.jupiter.api.Assertions.assertTrue;
66

7-
import org.junit.Test;
7+
import org.junit.jupiter.api.Test;
88

99
public class SortedLinkedListTest {
1010

0 commit comments

Comments
 (0)