| 49 | } |
| 50 | |
| 51 | void TestBazaar::initTestCase() |
| 52 | { |
| 53 | AutoTestShell::init({QStringLiteral("kdevbazaar")}); |
| 54 | TestCore::initialize(Core::NoUi); |
| 55 | |
| 56 | const auto pluginMetaData = makeTestPluginMetaData("TestBazaar"); |
| 57 | m_plugin = new BazaarPlugin(TestCore::self(), pluginMetaData); |
| 58 | |
| 59 | const auto bzrExecutable = QStandardPaths::findExecutable(QStringLiteral("bzr")); |
| 60 | if (bzrExecutable.isEmpty()) { |
| 61 | QSKIP("Skipping because `bzr` executable is not available"); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | void TestBazaar::cleanupTestCase() |
| 66 | { |
nothing calls this directly
no test coverage detected