| 44 | using TestFrameStackModel = KDevMI::Testing::TestFrameStackModel<DebugSession, LldbFrameStackModel>; |
| 45 | |
| 46 | TestDebugSession() : DebugSession() |
| 47 | { |
| 48 | // explicit set formatter path to force use in-tree formatters, not the one installed in system. |
| 49 | auto formatter = findFile(LLDB_SRC_DIR, "formatters/all.py"); |
| 50 | setFormatterPath(formatter); |
| 51 | |
| 52 | setSourceInitFile(false); |
| 53 | m_frameStackModel = new TestFrameStackModel(this); |
| 54 | |
| 55 | KDevelop::ICore::self()->debugController()->addSession(this); |
| 56 | } |
| 57 | |
| 58 | TestFrameStackModel* frameStackModel() const override |
| 59 | { |
nothing calls this directly
no test coverage detected