diff --git a/plugins/messageviewerplugins/externalscriptplugin/autotests/viewerpluginexternaleditwidgettest.cpp b/plugins/messageviewerplugins/externalscriptplugin/autotests/viewerpluginexternaleditwidgettest.cpp index 2dd6e8d9..8145f5ff 100644 --- a/plugins/messageviewerplugins/externalscriptplugin/autotests/viewerpluginexternaleditwidgettest.cpp +++ b/plugins/messageviewerplugins/externalscriptplugin/autotests/viewerpluginexternaleditwidgettest.cpp @@ -1,81 +1,82 @@ /* Copyright (C) 2016-2017 Montel Laurent This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "viewerpluginexternaleditwidgettest.h" #include "../configuredialog/viewerpluginexternaleditwidget.h" +#include #include #include #include ViewerPluginExternalEditWidgetTest::ViewerPluginExternalEditWidgetTest(QObject *parent) : QObject(parent) { } ViewerPluginExternalEditWidgetTest::~ViewerPluginExternalEditWidgetTest() { } void ViewerPluginExternalEditWidgetTest::shouldHaveDefaultValue() { ViewerPluginExternalEditWidget w; QFormLayout *mainLayout = w.findChild(QStringLiteral("mainlayout")); QVERIFY(mainLayout); QCOMPARE(mainLayout->margin(), 0); QLineEdit *mName = w.findChild(QStringLiteral("name")); QVERIFY(mName); QLineEdit *mDescription = w.findChild(QStringLiteral("description")); QVERIFY(mDescription); QLineEdit *mCommandLine = w.findChild(QStringLiteral("commandline")); QVERIFY(mCommandLine); - QLineEdit *mExecutable = w.findChild(QStringLiteral("executable")); + auto mExecutable = w.findChild(QStringLiteral("mEditorRequester")); QVERIFY(mExecutable); } void ViewerPluginExternalEditWidgetTest::shouldGetSaveInfo_data() { QTest::addColumn("scriptinfo"); ViewerPluginExternalScriptInfo info; info.setCommandLine(QStringLiteral("foo")); info.setDescription(QStringLiteral("blo")); info.setExecutable(QStringLiteral("voo")); info.setName(QStringLiteral("bla")); QTest::newRow("test1") << info; info.setIsReadOnly(true); QTest::newRow("test2") << info; info.setFileName(QStringLiteral("lili")); QTest::newRow("test3") << info; } void ViewerPluginExternalEditWidgetTest::shouldGetSaveInfo() { QFETCH(ViewerPluginExternalScriptInfo, scriptinfo); ViewerPluginExternalEditWidget w; w.setScriptInfo(scriptinfo); QCOMPARE(scriptinfo, w.scriptInfo()); } QTEST_MAIN(ViewerPluginExternalEditWidgetTest)