| 62 | } |
| 63 | |
| 64 | void TestSessionController::cleanupTestCase() |
| 65 | { |
| 66 | const auto sessions = m_sessionCtrl->sessions(); |
| 67 | for (const Session* session : sessions) { |
| 68 | TryLockSessionResult lock = m_sessionCtrl->tryLockSession(session->id().toString()); |
| 69 | if (lock.lock) |
| 70 | m_sessionCtrl->deleteSession( lock.lock ); |
| 71 | } |
| 72 | |
| 73 | TestCore::shutdown(); |
| 74 | } |
| 75 | |
| 76 | void TestSessionController::createSession_data() |
| 77 | { |
nothing calls this directly
no test coverage detected