We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc886d6 commit 650a622Copy full SHA for 650a622
1 file changed
src/test/java/com/thealgorithms/stacks/StackUsingLinkedListTest.java
@@ -1,6 +1,10 @@
1
package com.thealgorithms.stacks;
2
3
-import static org.junit.jupiter.api.Assertions.*;
+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.assertNull;
6
+import static org.junit.jupiter.api.Assertions.assertThrows;
7
+import static org.junit.jupiter.api.Assertions.assertTrue;
8
9
import org.junit.jupiter.api.BeforeEach;
10
import org.junit.jupiter.api.Test;
@@ -76,4 +80,4 @@ void size() {
76
80
77
81
assertEquals(2, linkedStack.size());
78
82
}
79
-}
83
+}
0 commit comments