gtest-matchers.cc
Go to the documentation of this file.
1 // Copyright 2007, Google Inc.
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are
6 // met:
7 //
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above
11 // copyright notice, this list of conditions and the following disclaimer
12 // in the documentation and/or other materials provided with the
13 // distribution.
14 // * Neither the name of Google Inc. nor the names of its
15 // contributors may be used to endorse or promote products derived from
16 // this software without specific prior written permission.
17 //
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 
30 // The Google C++ Testing and Mocking Framework (Google Test)
31 //
32 // This file implements just enough of the matcher interface to allow
33 // EXPECT_DEATH and friends to accept a matcher argument.
34 
37 #include "gtest/gtest-matchers.h"
38 
39 #include <string>
40 
41 namespace testing {
42 
43 // Constructs a matcher that matches a const std::string& whose value is
44 // equal to s.
45 Matcher<const std::string&>::Matcher(const std::string& s) { *this = Eq(s); }
46 
47 #if GTEST_HAS_GLOBAL_STRING
48 // Constructs a matcher that matches a const std::string& whose value is
49 // equal to s.
50 Matcher<const std::string&>::Matcher(const ::string& s) {
51  *this = Eq(static_cast<std::string>(s));
52 }
53 #endif // GTEST_HAS_GLOBAL_STRING
54 
55 // Constructs a matcher that matches a const std::string& whose value is
56 // equal to s.
57 Matcher<const std::string&>::Matcher(const char* s) {
58  *this = Eq(std::string(s));
59 }
60 
61 // Constructs a matcher that matches a std::string whose value is equal to
62 // s.
63 Matcher<std::string>::Matcher(const std::string& s) { *this = Eq(s); }
64 
65 #if GTEST_HAS_GLOBAL_STRING
66 // Constructs a matcher that matches a std::string whose value is equal to
67 // s.
68 Matcher<std::string>::Matcher(const ::string& s) {
69  *this = Eq(static_cast<std::string>(s));
70 }
71 #endif // GTEST_HAS_GLOBAL_STRING
72 
73 // Constructs a matcher that matches a std::string whose value is equal to
74 // s.
75 Matcher<std::string>::Matcher(const char* s) { *this = Eq(std::string(s)); }
76 
77 #if GTEST_HAS_GLOBAL_STRING
78 // Constructs a matcher that matches a const ::string& whose value is
79 // equal to s.
80 Matcher<const ::string&>::Matcher(const std::string& s) {
81  *this = Eq(static_cast<::string>(s));
82 }
83 
84 // Constructs a matcher that matches a const ::string& whose value is
85 // equal to s.
86 Matcher<const ::string&>::Matcher(const ::string& s) { *this = Eq(s); }
87 
88 // Constructs a matcher that matches a const ::string& whose value is
89 // equal to s.
90 Matcher<const ::string&>::Matcher(const char* s) { *this = Eq(::string(s)); }
91 
92 // Constructs a matcher that matches a ::string whose value is equal to s.
93 Matcher<::string>::Matcher(const std::string& s) {
94  *this = Eq(static_cast<::string>(s));
95 }
96 
97 // Constructs a matcher that matches a ::string whose value is equal to s.
98 Matcher<::string>::Matcher(const ::string& s) { *this = Eq(s); }
99 
100 // Constructs a matcher that matches a string whose value is equal to s.
101 Matcher<::string>::Matcher(const char* s) { *this = Eq(::string(s)); }
102 #endif // GTEST_HAS_GLOBAL_STRING
103 
104 #if GTEST_HAS_ABSL
105 // Constructs a matcher that matches a const absl::string_view& whose value is
106 // equal to s.
107 Matcher<const absl::string_view&>::Matcher(const std::string& s) {
108  *this = Eq(s);
109 }
110 
111 #if GTEST_HAS_GLOBAL_STRING
112 // Constructs a matcher that matches a const absl::string_view& whose value is
113 // equal to s.
114 Matcher<const absl::string_view&>::Matcher(const ::string& s) { *this = Eq(s); }
115 #endif // GTEST_HAS_GLOBAL_STRING
116 
117 // Constructs a matcher that matches a const absl::string_view& whose value is
118 // equal to s.
119 Matcher<const absl::string_view&>::Matcher(const char* s) {
120  *this = Eq(std::string(s));
121 }
122 
123 // Constructs a matcher that matches a const absl::string_view& whose value is
124 // equal to s.
125 Matcher<const absl::string_view&>::Matcher(absl::string_view s) {
126  *this = Eq(std::string(s));
127 }
128 
129 // Constructs a matcher that matches a absl::string_view whose value is equal to
130 // s.
131 Matcher<absl::string_view>::Matcher(const std::string& s) { *this = Eq(s); }
132 
133 #if GTEST_HAS_GLOBAL_STRING
134 // Constructs a matcher that matches a absl::string_view whose value is equal to
135 // s.
136 Matcher<absl::string_view>::Matcher(const ::string& s) { *this = Eq(s); }
137 #endif // GTEST_HAS_GLOBAL_STRING
138 
139 // Constructs a matcher that matches a absl::string_view whose value is equal to
140 // s.
141 Matcher<absl::string_view>::Matcher(const char* s) {
142  *this = Eq(std::string(s));
143 }
144 
145 // Constructs a matcher that matches a absl::string_view whose value is equal to
146 // s.
147 Matcher<absl::string_view>::Matcher(absl::string_view s) {
148  *this = Eq(std::string(s));
149 }
150 #endif // GTEST_HAS_ABSL
151 
152 } // namespace testing
testing
Definition: gmock-actions.h:59
string
GLsizei const GLchar *const * string
Definition: glcorearb.h:3083
gtest-internal.h
gtest-port.h
gtest-matchers.h


libaditof
Author(s):
autogenerated on Wed May 21 2025 02:06:53