2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2017-08-29 12:54:10 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <gmock/gmock-matchers.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/smallstringio.h>
|
|
|
|
|
|
|
|
|
|
namespace UnitTests {
|
|
|
|
|
|
|
|
|
|
template <typename StringType>
|
|
|
|
|
class EndsWithMatcher
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit EndsWithMatcher(const StringType& suffix) : m_suffix(suffix) {}
|
|
|
|
|
|
|
|
|
|
template <typename CharType>
|
|
|
|
|
bool MatchAndExplain(CharType *s, testing::MatchResultListener *listener) const
|
|
|
|
|
{
|
|
|
|
|
return s != NULL && MatchAndExplain(StringType(s), listener);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename MatcheeStringType>
|
|
|
|
|
bool MatchAndExplain(const MatcheeStringType& s,
|
|
|
|
|
testing::MatchResultListener* /* listener */) const
|
|
|
|
|
{
|
|
|
|
|
return s.endsWith(m_suffix);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DescribeTo(::std::ostream* os) const
|
|
|
|
|
{
|
|
|
|
|
*os << "ends with " << m_suffix;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DescribeNegationTo(::std::ostream* os) const
|
|
|
|
|
{
|
|
|
|
|
*os << "doesn't end with " << m_suffix;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EndsWithMatcher(EndsWithMatcher const &) = default;
|
|
|
|
|
EndsWithMatcher &operator=(EndsWithMatcher const &) = delete;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const StringType m_suffix;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
inline
|
|
|
|
|
testing::PolymorphicMatcher<EndsWithMatcher<Utils::SmallString> >
|
|
|
|
|
EndsWith(const Utils::SmallString &suffix)
|
|
|
|
|
{
|
|
|
|
|
return testing::MakePolymorphicMatcher(EndsWithMatcher<Utils::SmallString>(suffix));
|
|
|
|
|
}
|
|
|
|
|
}
|