#include <gtest.h>
Definition at line 269 of file gtest.h.
◆ AssertionResult() [1/2]
Definition at line 1001 of file gtest.cc.
1002 : success_(
other.success_),
1003 message_(
other.message_.get() != NULL ?
1004 new ::std::string(*
other.message_) :
1005 static_cast< ::std::string*>(NULL)) {
1006}
◆ AssertionResult() [2/2]
Definition at line 287 of file gtest.h.
292 : success_(success) {}
◆ failure_message()
const char * testing::AssertionResult::failure_message |
( |
| ) |
const |
|
inline |
Definition at line 319 of file gtest.h.
const char * message() const
◆ message()
const char * testing::AssertionResult::message |
( |
| ) |
const |
|
inline |
Definition at line 314 of file gtest.h.
314 {
315 return message_.
get() != NULL ? message_->c_str() :
"";
316 }
◆ operator bool()
testing::AssertionResult::operator bool |
( |
| ) |
const |
|
inline |
◆ operator!()
Definition at line 1016 of file gtest.cc.
1016 {
1018 if (message_.
get() != NULL)
1019 negation << *message_;
1020 return negation;
1021}
AssertionResult(const AssertionResult &other)
◆ operator<<() [1/2]
AssertionResult & testing::AssertionResult::operator<< |
( |
::std::ostream &(* | basic_manipulator )(::std::ostream &stream) | ) |
|
|
inline |
Definition at line 329 of file gtest.h.
330 {
331 AppendMessage(Message() << basic_manipulator);
332 return *this;
333 }
◆ operator<<() [2/2]
Definition at line 322 of file gtest.h.
322 {
323 AppendMessage(Message() <<
value);
324 return *this;
325 }
◆ operator=()
Definition at line 299 of file gtest.h.
299 {
300 swap(other);
301 return *this;
302 }
The documentation for this class was generated from the following files:
- libraries/fc/include/fc/crypto/webauthn_json/thirdparty/gtest/googletest/include/gtest/gtest.h
- libraries/fc/include/fc/crypto/webauthn_json/thirdparty/gtest/googletest/src/gtest.cc