| 43 | class TestObject { |
| 44 | public: |
| 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()) + ")"; } |
nothing calls this directly
no outgoing calls
no test coverage detected