| 117 | } |
| 118 | |
| 119 | CelValueMatcher IsCelString(testing::Matcher<absl::string_view> m) { |
| 120 | return CelValueMatcher(new CelValueMatcherImpl<CelValue::StringHolder>( |
| 121 | testing::Property(&CelValue::StringHolder::value, m))); |
| 122 | } |
| 123 | |
| 124 | CelValueMatcher IsCelBytes(testing::Matcher<absl::string_view> m) { |
| 125 | return CelValueMatcher(new CelValueMatcherImpl<CelValue::BytesHolder>( |
no outgoing calls