We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db4e0c3 commit 43553e1Copy full SHA for 43553e1
1 file changed
src/test/java/com/thealgorithms/stacks/StackUsingLinkedListTest.java
@@ -1,6 +1,9 @@
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.assertThrows;
5
+import static org.junit.jupiter.api.Assertions.assertTrue;
6
+import static org.junit.jupiter.api.Assertions.assertFalse;
7
import org.junit.jupiter.api.Test;
8
9
/**
@@ -68,4 +71,4 @@ void testPeekOnEmptyStack() {
68
71
69
72
assertThrows(RuntimeException.class, stack::peek);
70
73
}
-}
74
+}
0 commit comments