| 9553 | } |
| 9554 | |
| 9555 | void DescribeTo(::std::ostream* os) const { |
| 9556 | *os << (full_match_ ? "matches" : "contains") << " regular expression "; |
| 9557 | UniversalPrinter<std::string>::Print(regex_->pattern(), os); |
| 9558 | } |
| 9559 | |
| 9560 | void DescribeNegationTo(::std::ostream* os) const { |
| 9561 | *os << "doesn't " << (full_match_ ? "match" : "contain") |
nothing calls this directly
no outgoing calls
no test coverage detected