diff options
author | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2013-03-25 16:27:03 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2013-03-25 16:27:03 +0000 |
commit | 1f122a06e6aad4d234123d2d8c1e352029ce0742 (patch) | |
tree | 9760e4477a4ca9c8405dab2dbe3d0dd63c266ea5 /src | |
parent | 2eab17b76d350dac1b1c85879ec8e1135da615ce (diff) | |
download | googletest-1f122a06e6aad4d234123d2d8c1e352029ce0742.tar.gz googletest-1f122a06e6aad4d234123d2d8c1e352029ce0742.tar.bz2 googletest-1f122a06e6aad4d234123d2d8c1e352029ce0742.zip |
Adds special support for matching StringPiece. Pulls in gtest r646.
Diffstat (limited to 'src')
-rw-r--r-- | src/gmock-matchers.cc | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/gmock-matchers.cc b/src/gmock-matchers.cc index 63f3859b..5f746b95 100644 --- a/src/gmock-matchers.cc +++ b/src/gmock-matchers.cc @@ -63,6 +63,41 @@ Matcher<internal::string>::Matcher(const char* s) { *this = Eq(internal::string(s)); } +#if GTEST_HAS_STRING_PIECE_ +// Constructs a matcher that matches a const StringPiece& whose value is +// equal to s. +Matcher<const StringPiece&>::Matcher(const internal::string& s) { + *this = Eq(s); +} + +// Constructs a matcher that matches a const StringPiece& whose value is +// equal to s. +Matcher<const StringPiece&>::Matcher(const char* s) { + *this = Eq(internal::string(s)); +} + +// Constructs a matcher that matches a const StringPiece& whose value is +// equal to s. +Matcher<const StringPiece&>::Matcher(StringPiece s) { + *this = Eq(s.ToString()); +} + +// Constructs a matcher that matches a StringPiece whose value is equal to s. +Matcher<StringPiece>::Matcher(const internal::string& s) { + *this = Eq(s); +} + +// Constructs a matcher that matches a StringPiece whose value is equal to s. +Matcher<StringPiece>::Matcher(const char* s) { + *this = Eq(internal::string(s)); +} + +// Constructs a matcher that matches a StringPiece whose value is equal to s. +Matcher<StringPiece>::Matcher(StringPiece s) { + *this = Eq(s.ToString()); +} +#endif // GTEST_HAS_STRING_PIECE_ + namespace internal { // Joins a vector of strings as if they are fields of a tuple; returns |