| 216 | } |
| 217 | |
| 218 | ValueMatcher StringValueIs(Matcher<std::string> m) { |
| 219 | return ValueMatcher(new StringTypeMatcherImpl<StringValue>(std::move(m))); |
| 220 | } |
| 221 | |
| 222 | ValueMatcher BytesValueIs(Matcher<std::string> m) { |
| 223 | return ValueMatcher(new StringTypeMatcherImpl<BytesValue>(std::move(m))); |
no outgoing calls
no test coverage detected