| 1826 | } |
| 1827 | |
| 1828 | void DebuggerTestBase::testVariablesStopDebugger() |
| 1829 | { |
| 1830 | auto* const session = createTestDebugSession(); |
| 1831 | TestLaunchConfiguration cfg; |
| 1832 | |
| 1833 | session->variableController()->setAutoUpdate(IVariableController::UpdateLocals); |
| 1834 | |
| 1835 | addDebugeeBreakpoint(39); |
| 1836 | ActiveStateSessionSpy sessionSpy(session); |
| 1837 | START_DEBUGGING_AND_WAIT_FOR_PAUSED_STATE_E(session, cfg, sessionSpy); |
| 1838 | |
| 1839 | session->stopDebugger(); |
| 1840 | WAIT_FOR_STATE(session, IDebugSession::EndedState); |
| 1841 | } |
| 1842 | |
| 1843 | void DebuggerTestBase::testVariablesStartSecondSession() |
| 1844 | { |
nothing calls this directly
no test coverage detected