| 44 | using MutableMapValueTest = common_internal::ValueTest<>; |
| 45 | |
| 46 | TEST_F(MutableMapValueTest, DebugString) { |
| 47 | auto mutable_map_value = NewMutableMapValue(arena()); |
| 48 | EXPECT_THAT(CustomMapValue(mutable_map_value, arena()).DebugString(), "{}"); |
| 49 | } |
| 50 | |
| 51 | TEST_F(MutableMapValueTest, IsEmpty) { |
| 52 | auto mutable_map_value = NewMutableMapValue(arena()); |
nothing calls this directly
no test coverage detected