#include <gtest.h>
|
| TestProperty (const std::string &a_key, const std::string &a_value) |
|
const char * | key () const |
|
const char * | value () const |
|
void | SetValue (const std::string &new_value) |
|
Definition at line 534 of file gtest.h.
◆ TestProperty()
testing::TestProperty::TestProperty |
( |
const std::string & |
a_key, |
|
|
const std::string & |
a_value |
|
) |
| |
|
inline |
Definition at line 539 of file gtest.h.
539 :
540 key_(a_key), value_(a_value) {
541 }
◆ key()
const char * testing::TestProperty::key |
( |
| ) |
const |
|
inline |
Definition at line 544 of file gtest.h.
544 {
545 return key_.c_str();
546 }
◆ SetValue()
void testing::TestProperty::SetValue |
( |
const std::string & |
new_value | ) |
|
|
inline |
Definition at line 554 of file gtest.h.
554 {
555 value_ = new_value;
556 }
◆ value()
const char * testing::TestProperty::value |
( |
| ) |
const |
|
inline |
Definition at line 549 of file gtest.h.
549 {
550 return value_.c_str();
551 }
The documentation for this class was generated from the following file:
- /media/home/debian/src/github/tesseract-ocr/tesseract/unittest/third_party/googletest/googletest/include/gtest/gtest.h