We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 271474a commit f293315Copy full SHA for f293315
src/test/java/com/thealgorithms/datastructures/bag/BagTest.java
@@ -1,6 +1,10 @@
1
package com.thealgorithms.datastructures.bag;
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.assertThrows;
6
+import static org.junit.jupiter.api.Assertions.assertTrue;
7
+import static org.junit.jupiter.api.Assertions.fail;
8
9
import com.thealgorithms.datastructures.bags.Bag;
10
import java.util.Iterator;
0 commit comments