fn testSet(map: TestMapVoid) !void
fn testSet(map: TestMapVoid) !void { try testing.expectEqual({}, map.get("have").?); try testing.expectEqual({}, map.get("nothing").?); try testing.expect(null == map.get("missing")); try testing.expectEqual({}, map.get("these").?); try testing.expectEqual({}, map.get("samelen").?); try testing.expect(!map.has("missing")); try testing.expect(map.has("these")); try testing.expect(null == map.get("")); try testing.expect(null == map.get("averylongstringthathasnomatches")); }