Special constructor that allows the factory to construct a PyTF6 from a TestFactory6 only when an alias is needed:
| 114 | // Special constructor that allows the factory to construct a PyTF6 from a TestFactory6 only |
| 115 | // when an alias is needed: |
| 116 | explicit PyTF6(TestFactory6 &&base) : TestFactory6(std::move(base)) { |
| 117 | alias = true; |
| 118 | print_created(this, "move", value); |
| 119 | } |
| 120 | explicit PyTF6(int i) : TestFactory6(i) { |
| 121 | alias = true; |
| 122 | print_created(this, i); |
no test coverage detected