| 176 | // ── Duplicate on struct is no-op ── |
| 177 | |
| 178 | void testDuplicateStructNoOp() { |
| 179 | int rootIdx = findNode("Player"); |
| 180 | QVERIFY(rootIdx >= 0); |
| 181 | int before = countNodes(); |
| 182 | |
| 183 | m_ctrl->duplicateNode(rootIdx); |
| 184 | QApplication::processEvents(); |
| 185 | |
| 186 | QCOMPARE(countNodes(), before); |
| 187 | } |
| 188 | |
| 189 | // ── Insert at root level (parentId=0) ── |
| 190 |
nothing calls this directly
no test coverage detected