| 52 | // ============================================================================ |
| 53 | |
| 54 | TEST(MapSerializerTest, EmptyMapRoundtrip) { |
| 55 | test_map_roundtrip(std::map<std::string, int32_t>{}); |
| 56 | test_map_roundtrip(std::unordered_map<std::string, int32_t>{}); |
| 57 | } |
| 58 | |
| 59 | TEST(MapSerializerTest, SingleEntryMapRoundtrip) { |
| 60 | test_map_roundtrip(std::map<std::string, int32_t>{{"one", 1}}); |
nothing calls this directly
no test coverage detected