| 35 | class TestFactory2 { |
| 36 | friend class TestFactoryHelper; |
| 37 | TestFactory2() : value("(empty2)") { print_default_created(this); } |
| 38 | explicit TestFactory2(int v) : value(std::to_string(v)) { print_created(this, value); } |
| 39 | explicit TestFactory2(std::string v) : value(std::move(v)) { print_created(this, value); } |
| 40 |
no test coverage detected