File indexing completed on 2025-01-19 04:46:39
0001 /* 0002 SPDX-FileCopyrightText: 2016-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #include "changecaseplugineditortest.h" 0008 #include "../changecaseplugineditor.h" 0009 #include <KActionCollection> 0010 #include <QTest> 0011 0012 ChangeCasePluginEditorTest::ChangeCasePluginEditorTest(QObject *parent) 0013 : QObject(parent) 0014 { 0015 } 0016 0017 ChangeCasePluginEditorTest::~ChangeCasePluginEditorTest() = default; 0018 0019 void ChangeCasePluginEditorTest::shouldHaveDefaultValue() 0020 { 0021 ChangeCasePluginEditor plugin; 0022 QVERIFY(plugin.createInterface(new KActionCollection(this))); 0023 QVERIFY(plugin.hasPopupMenuSupport()); 0024 QVERIFY(!plugin.hasConfigureDialog()); 0025 QVERIFY(!plugin.hasToolBarSupport()); 0026 } 0027 0028 QTEST_MAIN(ChangeCasePluginEditorTest) 0029 0030 #include "moc_changecaseplugineditortest.cpp"