fn testMap(map: anytype) !void
fn testMap(map: anytype) !void { try testing.expectEqual(TestEnum.A, map.get("have").?); try testing.expectEqual(TestEnum.B, map.get("nothing").?); try testing.expect(null == map.get("missing")); try testing.expectEqual(TestEnum.D, map.get("these").?); try testing.expectEqual(TestEnum.E, 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")); }