| 20 | class TestFactory1 { |
| 21 | friend class TestFactoryHelper; |
| 22 | TestFactory1() : value("(empty)") { print_default_created(this); } |
| 23 | explicit TestFactory1(int v) : value(std::to_string(v)) { print_created(this, value); } |
| 24 | explicit TestFactory1(std::string v) : value(std::move(v)) { print_created(this, value); } |
| 25 |
no test coverage detected