| 63 | std::wstring_view m_MatchStr; |
| 64 | |
| 65 | void DescribeHelper(bool matches, std::ostream *os) const |
| 66 | { |
| 67 | *os << "is"; |
| 68 | if (!matches) |
| 69 | { |
| 70 | *os << "n't"; |
| 71 | } |
| 72 | |
| 73 | *os << " equal to " << testing::PrintToString(std::wstring(m_MatchStr)); |
| 74 | } |
| 75 | |
| 76 | public: |
| 77 | using is_gtest_matcher = void; |
nothing calls this directly
no outgoing calls
no test coverage detected