MCPcopy Create free account
hub / github.com/Berkeley-CS61B/skeleton-sp23 / testGet

Method testGet

lab08/tests/hashmap/TestMyHashMap.java:79–83  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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();

Callers

nothing calls this directly

Calls 1

sanityGetTestMethod · 0.95

Tested by

no test coverage detected