()
| 39 | |
| 40 | // Assumes `put` is implemented properly. |
| 41 | @Test |
| 42 | public void sanityContainsKeyTest() { |
| 43 | BSTMap<String, Integer> b = new BSTMap<>(); |
| 44 | assertThat(b.containsKey("waterYouDoingHere")).isFalse(); |
| 45 | b.put("waterYouDoingHere", 0); |
| 46 | assertThat(b.containsKey("waterYouDoingHere")).isTrue(); |
| 47 | } |
| 48 | |
| 49 | // Assumes `put` is implemented properly. |
| 50 | @Test |
nothing calls this directly
no test coverage detected