| 97 | } |
| 98 | |
| 99 | CelValueMatcher IsCelNull() { |
| 100 | return CelValueMatcher(new CelValueMatcherImpl<CelValue::NullType>(_)); |
| 101 | } |
| 102 | |
| 103 | CelValueMatcher IsCelBool(testing::Matcher<bool> m) { |
| 104 | return CelValueMatcher(new CelValueMatcherImpl<bool>(std::move(m))); |