()
| 77 | |
| 78 | // assumes put works |
| 79 | @DisplayName("get") |
| 80 | @Test |
| 81 | public void testGet() { |
| 82 | sanityGetTest(new MyHashMap<>()); |
| 83 | } |
| 84 | |
| 85 | public static void sanityGetTest(MyHashMap<String, Integer> b) { |
| 86 | assertThat(b.get("starChild")).isNull(); |
nothing calls this directly
no test coverage detected