| 220 | } |
| 221 | |
| 222 | Variable* DebuggerTestBase::watchVariableAt(int index) const |
| 223 | { |
| 224 | const auto watchesIndex = variableCollection()->indexForItem(variableCollection()->watches(), 0); |
| 225 | const auto childIndex = variableCollection()->index(index, 0, watchesIndex); |
| 226 | return qobject_cast<Variable*>(variableCollection()->itemForIndex(childIndex)); |
| 227 | } |
| 228 | |
| 229 | void DebuggerTestBase::verifyInferiorStdout(TestLaunchConfiguration& launchConfiguration, |
| 230 | const QStringList& expectedOutputLines) |
nothing calls this directly
no test coverage detected