| 122 | } |
| 123 | |
| 124 | CelValueMatcher IsCelBytes(testing::Matcher<absl::string_view> m) { |
| 125 | return CelValueMatcher(new CelValueMatcherImpl<CelValue::BytesHolder>( |
| 126 | testing::Property(&CelValue::BytesHolder::value, m))); |
| 127 | } |
| 128 | |
| 129 | CelValueMatcher IsCelMessage(testing::Matcher<const google::protobuf::Message*> m) { |
| 130 | return CelValueMatcher( |
no outgoing calls