| 132 | } |
| 133 | |
| 134 | CelValueMatcher IsCelDuration(testing::Matcher<absl::Duration> m) { |
| 135 | return CelValueMatcher(new CelValueMatcherImpl<absl::Duration>(std::move(m))); |
| 136 | } |
| 137 | |
| 138 | CelValueMatcher IsCelTimestamp(testing::Matcher<absl::Time> m) { |
| 139 | return CelValueMatcher(new CelValueMatcherImpl<absl::Time>(std::move(m))); |
no outgoing calls