| 29 | } |
| 30 | |
| 31 | TestStr::TestStr() : value("") {} |
| 32 | TestStr::TestStr(const std::string& s) : value(s) {} // NOLINT runtime/explicit |
| 33 | TestStr::TestStr(const char* s) : value(s) {} // NOLINT runtime/explicit |
| 34 | TestStr::TestStr(const TestInt& test_int) { |
nothing calls this directly
no test coverage detected