#include <gtest-message.h>
Definition at line 85 of file gtest-message.h.
◆ Message() [1/3]
testing::Message::Message |
( |
| ) |
|
Definition at line 960 of file gtest.cc.
960 : ss_(new ::std::stringstream) {
961
962
963 *ss_ << std::setprecision(std::numeric_limits<double>::digits10 + 2);
964}
◆ Message() [2/3]
testing::Message::Message |
( |
const Message & | msg | ) |
|
|
inline |
Definition at line 96 of file gtest-message.h.
96 : ss_(new ::std::stringstream) {
97 *ss_ << msg.GetString();
98 }
◆ Message() [3/3]
testing::Message::Message |
( |
const char * | str | ) |
|
|
inlineexplicit |
Definition at line 101 of file gtest-message.h.
101 : ss_(new ::std::stringstream) {
103 }
◆ GetString()
std::string testing::Message::GetString |
( |
| ) |
const |
Definition at line 995 of file gtest.cc.
995 {
997}
GTEST_API_ std::string StringStreamToString(::std::stringstream *stream)
◆ operator<<() [1/6]
Message & testing::Message::operator<< |
( |
BasicNarrowIoManip | val | ) |
|
|
inline |
Definition at line 165 of file gtest-message.h.
165 {
166 *ss_ << val;
167 return *this;
168 }
◆ operator<<() [2/6]
Message & testing::Message::operator<< |
( |
bool | b | ) |
|
|
inline |
Definition at line 171 of file gtest-message.h.
171 {
172 return *this << (b ? "true" : "false");
173 }
◆ operator<<() [3/6]
Message & testing::Message::operator<< |
( |
const T & | val | ) |
|
|
inline |
Definition at line 115 of file gtest-message.h.
115 {
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130 using ::operator <<;
131 *ss_ << val;
132 return *this;
133 }
◆ operator<<() [4/6]
Message & testing::Message::operator<< |
( |
const wchar_t * | wide_c_str | ) |
|
Definition at line 968 of file gtest.cc.
968 {
970}
static std::string ShowWideCString(const wchar_t *wide_c_str)
◆ operator<<() [5/6]
Message & testing::Message::operator<< |
( |
T *const & | pointer | ) |
|
|
inline |
Definition at line 149 of file gtest-message.h.
149 {
151 *ss_ << "(null)";
152 } else {
154 }
155 return *this;
156 }
const GenericPointer< typename T::ValueType > & pointer
◆ operator<<() [6/6]
Message & testing::Message::operator<< |
( |
wchar_t * | wide_c_str | ) |
|
The documentation for this class was generated from the following files:
- libraries/fc/include/fc/crypto/webauthn_json/thirdparty/gtest/googletest/include/gtest/gtest-message.h
- libraries/fc/include/fc/crypto/webauthn_json/thirdparty/gtest/googletest/src/gtest.cc