| 69 | }; |
| 70 | |
| 71 | void TestShellBuddy::initTestCase() |
| 72 | { |
| 73 | AutoTestShell::init({{}}); // do not load plugins at all |
| 74 | TestCore::initialize(); |
| 75 | m_documentController = Core::self()->documentController(); |
| 76 | m_uiController = Core::self()->uiControllerInternal(); |
| 77 | |
| 78 | m_finder = new TestBuddyFinder; |
| 79 | KDevelop::IBuddyDocumentFinder::addFinder(QStringLiteral("text/plain"), m_finder); |
| 80 | } |
| 81 | |
| 82 | void TestShellBuddy::cleanupTestCase() |
| 83 | { |
nothing calls this directly
no test coverage detected