| 232 | } |
| 233 | |
| 234 | ValueMatcher StructValueIs(Matcher<StructValue> m) { |
| 235 | return ValueMatcher(new AbstractTypeMatcherImpl<StructValue>(std::move(m))); |
| 236 | } |
| 237 | |
| 238 | ValueMatcher OptionalValueIs(ValueMatcher m) { |
| 239 | return ValueMatcher(new OptionalValueMatcherImpl(std::move(m))); |
no outgoing calls
no test coverage detected