| 27 | using ::absl_testing::StatusIs; |
| 28 | |
| 29 | TEST(MaxDuration, ProtoEquiv) { |
| 30 | EXPECT_EQ(MaxDuration(), |
| 31 | absl::Seconds(google::protobuf::util::TimeUtil::kDurationMaxSeconds) + |
| 32 | absl::Nanoseconds(999999999)); |
| 33 | } |
| 34 | |
| 35 | TEST(MinDuration, ProtoEquiv) { |
| 36 | EXPECT_EQ(MinDuration(), |
nothing calls this directly
no test coverage detected