| 29 | using BoolValueTest = common_internal::ValueTest<>; |
| 30 | |
| 31 | TEST_F(BoolValueTest, Kind) { |
| 32 | EXPECT_EQ(BoolValue(true).kind(), BoolValue::kKind); |
| 33 | EXPECT_EQ(Value(BoolValue(true)).kind(), BoolValue::kKind); |
| 34 | } |
| 35 | |
| 36 | TEST_F(BoolValueTest, DebugString) { |
| 37 | { |
nothing calls this directly
no test coverage detected