| 38 | using BytesValueTest = common_internal::ValueTest<>; |
| 39 | |
| 40 | TEST_F(BytesValueTest, Kind) { |
| 41 | EXPECT_EQ(BytesValue("foo").kind(), BytesValue::kKind); |
| 42 | EXPECT_EQ(Value(BytesValue(absl::Cord("foo"))).kind(), BytesValue::kKind); |
| 43 | } |
| 44 | |
| 45 | TEST_F(BytesValueTest, DebugString) { |
| 46 | { |
nothing calls this directly
no test coverage detected