| 40 | using ParsedJsonValueTest = common_internal::ValueTest<>; |
| 41 | |
| 42 | TEST_F(ParsedJsonValueTest, Null_Dynamic) { |
| 43 | EXPECT_THAT(ParsedJsonValue(DynamicParseTextProto<google::protobuf::Value>( |
| 44 | R"pb(null_value: NULL_VALUE)pb"), |
| 45 | arena()), |
| 46 | IsNullValue()); |
| 47 | EXPECT_THAT(ParsedJsonValue(DynamicParseTextProto<google::protobuf::Value>( |
| 48 | R"pb(null_value: NULL_VALUE)pb"), |
| 49 | arena()), |
| 50 | IsNullValue()); |
| 51 | } |
| 52 | |
| 53 | TEST_F(ParsedJsonValueTest, Bool_Dynamic) { |
| 54 | EXPECT_THAT(ParsedJsonValue(DynamicParseTextProto<google::protobuf::Value>( |
nothing calls this directly
no test coverage detected