()
| 86 | // Assumes `put` is implemented properly. This test is a bit tricky - remember that |
| 87 | // `containsKey` should only care about the keys, not the values! |
| 88 | @Test |
| 89 | public void containsKeyNullTest() { |
| 90 | BSTMap<String, Integer> b = new BSTMap<>(); |
| 91 | b.put("hi", null); |
| 92 | assertThat(b.get("hi")).isNull(); |
| 93 | assertThat(b.containsKey("hi")).isTrue(); |
| 94 | } |
| 95 | |
| 96 | @Test |
| 97 | public void treeTest() { |
nothing calls this directly
no test coverage detected