| 211 | } |
| 212 | |
| 213 | ValueMatcher ErrorValueIs(Matcher<absl::Status> m) { |
| 214 | return ValueMatcher( |
| 215 | new SimpleTypeMatcherImpl<ErrorValue, absl::Status>(std::move(m))); |
| 216 | } |
| 217 | |
| 218 | ValueMatcher StringValueIs(Matcher<std::string> m) { |
| 219 | return ValueMatcher(new StringTypeMatcherImpl<StringValue>(std::move(m))); |
no outgoing calls
no test coverage detected