| 79 | constexpr SameString(std::wstring_view str) noexcept : m_MatchStr(str) { } |
| 80 | |
| 81 | constexpr bool MatchAndExplain(const std::tuple<const wchar_t *, rj::SizeType> &args, std::ostream *) const noexcept |
| 82 | { |
| 83 | return m_MatchStr == std::wstring_view { std::get<0>(args), std::get<1>(args) }; |
| 84 | } |
| 85 | |
| 86 | void DescribeTo(std::ostream *os) const { DescribeHelper(true, os); } |
| 87 | void DescribeNegationTo(std::ostream *os) const { DescribeHelper(false, os); } |
nothing calls this directly
no outgoing calls
no test coverage detected