| 29 | using TimestampValueTest = common_internal::ValueTest<>; |
| 30 | |
| 31 | TEST_F(TimestampValueTest, Kind) { |
| 32 | EXPECT_EQ(TimestampValue().kind(), TimestampValue::kKind); |
| 33 | EXPECT_EQ(Value(TimestampValue(absl::UnixEpoch() + absl::Seconds(1))).kind(), |
| 34 | TimestampValue::kKind); |
| 35 | } |
| 36 | |
| 37 | TEST_F(TimestampValueTest, DebugString) { |
| 38 | { |
nothing calls this directly
no test coverage detected