| 368 | TEST_CASE_METHOD(TApp, "stringLikeTests", "[optiontype]") { |
| 369 | struct nType { |
| 370 | explicit nType(std::string a_value) : m_value{std::move(a_value)} {} |
| 371 | |
| 372 | explicit operator std::string() const { return std::string{"op str"}; } |
| 373 |
nothing calls this directly
no outgoing calls
no test coverage detected