| 32 | using DurationValueTest = common_internal::ValueTest<>; |
| 33 | |
| 34 | TEST_F(DurationValueTest, Kind) { |
| 35 | EXPECT_EQ(DurationValue().kind(), DurationValue::kKind); |
| 36 | EXPECT_EQ(Value(DurationValue(absl::Seconds(1))).kind(), |
| 37 | DurationValue::kKind); |
| 38 | } |
| 39 | |
| 40 | TEST_F(DurationValueTest, DebugString) { |
| 41 | { |
nothing calls this directly
no test coverage detected