Skip to content

Commit ff18b9d

Browse files
author
Krishnan M
committed
updated pretty Display and added BSTRecursiveGenericTest.java
1 parent c561022 commit ff18b9d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/test/java/com/thealgorithms/datastructures/trees/BSTRecursiveGenericTest.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
package com.thealgorithms.datastructures.trees;
22

3-
import static org.junit.jupiter.api.Assertions.*;
3+
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertTrue;
5+
46
import java.util.List;
7+
58
import org.junit.jupiter.api.BeforeEach;
69
import org.junit.jupiter.api.Test;
710

11+
import static org.junit.jupiter.api.Assertions.assertFalse;
12+
813
/**
914
* Unit tests for BSTRecursiveGeneric class.
1015
* Covers insertion, deletion, search, traversal, sorting, and display.

0 commit comments

Comments
 (0)