| 9521 | class MatchesRegexMatcher { |
| 9522 | public: |
| 9523 | MatchesRegexMatcher(const RE* regex, bool full_match) |
| 9524 | : regex_(regex), full_match_(full_match) {} |
| 9525 | |
| 9526 | #if GTEST_HAS_ABSL |
| 9527 | bool MatchAndExplain(const absl::string_view& s, |
nothing calls this directly
no outgoing calls
no test coverage detected