MCPcopy Create free account
hub / github.com/attermann/microReticulum / TestObject

Method TestObject

test/test_persistence/test_persistence.cpp:45–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43class TestObject {
44public:
45 TestObject() {}
46 TestObject(const char* str, std::vector<std::string>& vec) : _str(str), _vec(vec) {}
47 inline bool operator < (const TestObject& test) const { return _str < test._str; }
48 inline const std::string toString() const { return std::string("TestObject(") + _str + "," + std::to_string(_vec.size()) + ")"; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected