| 195 | } |
| 196 | |
| 197 | void DebuggerTestBase::expandVariableCollection(const QModelIndex& index) |
| 198 | { |
| 199 | auto* const collection = variableCollection(); |
| 200 | QSignalSpy childrenReadySpy(collection, &TreeModel::itemChildrenReady); |
| 201 | collection->expanded(index); |
| 202 | if (childrenReadySpy.empty()) { |
| 203 | QVERIFY(childrenReadySpy.wait(2'000)); |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | int DebuggerTestBase::variableChildCount(Variable* variable) const |
| 208 | { |
nothing calls this directly
no test coverage detected