Home
last modified time | relevance | path

Searched refs:EndsWithMatcher (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1074 class EndsWithMatcher {
1076 explicit EndsWithMatcher(const StringType& suffix) : suffix_(suffix) {}
4523 PolymorphicMatcher<internal::EndsWithMatcher<std::string>> EndsWith(
4526 internal::EndsWithMatcher<std::string>(std::string(suffix)));
4576 inline PolymorphicMatcher<internal::EndsWithMatcher<std::wstring>> EndsWith(
4579 internal::EndsWithMatcher<std::wstring>(suffix));
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp3520 struct EndsWithMatcher : StringMatcherBase { struct
3521 EndsWithMatcher( CasedString const& comparator );
3542 …StdString::EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity…
11608EndsWithMatcher::EndsWithMatcher( CasedString const& comparator ) : StringMatcherBase( "ends with"… in EndsWithMatcher() function in Catch::Matchers::StdString::EndsWithMatcher
11610 bool EndsWithMatcher::match( std::string const& source ) const { in match()
11637 …StdString::EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity… in EndsWith()
11638 return StdString::EndsWithMatcher( StdString::CasedString( str, caseSensitivity) ); in EndsWith()