Skip to content

Commit 57c110f

Browse files
committed
BinaryTree(The madman implementation)
1 parent 381d793 commit 57c110f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

group18/935542673/Coding/junit/com/ikook/basic_data_structure/MyBinarySearchTreeTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public void setUp() {
2121
tree.insert(8);
2222
}
2323

24+
@SuppressWarnings("static-access")
2425
@Test
2526
public void testInsert() {
2627
tree.insert(1);
@@ -46,6 +47,7 @@ public void testFind() {
4647
assertEquals(true, tree.find(10));
4748
}
4849

50+
@SuppressWarnings("static-access")
4951
@Test
5052
public void testDelete() {
5153
tree.insert(1);

0 commit comments

Comments
 (0)