We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f337e3 commit b2d683fCopy full SHA for b2d683f
src/test/java/com/thealgorithms/datastructures/trees/TreapTest.java
@@ -2,6 +2,8 @@
2
3
import static org.junit.jupiter.api.Assertions.assertEquals;
4
5
+import static org.junit.jupiter.api.Assertions.assertFalse;
6
+
7
import org.junit.jupiter.api.Test;
8
9
public class TreapTest {
@@ -59,7 +61,7 @@ public void upperBound() {
59
61
}
60
62
63
@Test
- public void misc() {
64
+ public void size() {
65
Treap treap = new Treap();
66
treap.insert(5);
67
treap.insert(9);
0 commit comments