C'tor. TestProperty does NOT have a default constructor. Always use this constructor (with parameters) to create a TestProperty object.
| 12983 | // Always use this constructor (with parameters) to create a |
| 12984 | // TestProperty object. |
| 12985 | TestProperty(const std::string& a_key, const std::string& a_value) : |
| 12986 | key_(a_key), value_(a_value) { |
| 12987 | } |
| 12988 | |
| 12989 | // Gets the user supplied key. |
| 12990 | const char* key() const { |
nothing calls this directly
no outgoing calls
no test coverage detected