Add test/autotests for filteractionmissingidentitydialog

wilder
Montel Laurent 10 years ago
parent 567d7db5cd
commit cbe1897336
  1. 5
      src/filter/autotests/CMakeLists.txt
  2. 40
      src/filter/autotests/filteractionmissingidentitydialogtest.cpp
  3. 35
      src/filter/autotests/filteractionmissingidentitydialogtest.h
  4. 11
      src/filter/tests/CMakeLists.txt
  5. 39
      src/filter/tests/filteractionmissingidentitydialoggui.cpp

@ -250,3 +250,8 @@ add_mailcommon_filter_test(filteractionmissingtagdialogtest
filteractionmissingtagdialogtest.cpp
../dialog/filteractionmissingtagdialog.cpp
)
add_mailcommon_filter_test(filteractionmissingidentitydialogtest
filteractionmissingidentitydialogtest.cpp
../dialog/filteractionmissingidentitydialog.cpp
)

@ -0,0 +1,40 @@
/*
Copyright (C) 2016 Laurent Montel <montel@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "filteractionmissingidentitydialogtest.h"
#include "../filter/dialog/filteractionmissingidentitydialog.h"
#include <QTest>
FilterActionMissingIdentityDialogTest::FilterActionMissingIdentityDialogTest(QObject *parent)
: QObject(parent)
{
}
FilterActionMissingIdentityDialogTest::~FilterActionMissingIdentityDialogTest()
{
}
void FilterActionMissingIdentityDialogTest::shouldHaveDefaultValue()
{
}
QTEST_MAIN(FilterActionMissingIdentityDialogTest)

@ -0,0 +1,35 @@
/*
Copyright (C) 2016 Laurent Montel <montel@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef FILTERACTIONMISSINGIDENTITYDIALOGTEST_H
#define FILTERACTIONMISSINGIDENTITYDIALOGTEST_H
#include <QObject>
class FilterActionMissingIdentityDialogTest : public QObject
{
Q_OBJECT
public:
explicit FilterActionMissingIdentityDialogTest(QObject *parent = Q_NULLPTR);
~FilterActionMissingIdentityDialogTest();
private Q_SLOTS:
void shouldHaveDefaultValue();
};
#endif // FILTERACTIONMISSINGIDENTITYDIALOGTEST_H

@ -95,3 +95,14 @@ target_link_libraries(filteractionmissingtagdialoggui
KF5::I18n
KF5::Completion
)
set(filteractionmissingidentitydialoggui_SRCS filteractionmissingidentitydialoggui.cpp ../../../autotests/dummykernel.cpp ../dialog/filteractionmissingidentitydialog.cpp)
add_executable(filteractionmissingidentitydialoggui ${filteractionmissingidentitydialoggui_SRCS})
ecm_mark_as_test(filteractionmissingidentitydialoggui)
target_link_libraries(filteractionmissingidentitydialoggui
Qt5::Core
Qt5::Gui
KF5::MailCommon
KF5::I18n
KF5::Completion
)

@ -0,0 +1,39 @@
/*
Copyright (C) 2016 Laurent Montel <montel@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include <QApplication>
#include <QStandardPaths>
#include "../../../autotests/dummykernel.h"
#include "../kernel/mailkernel.h"
#include "../filter/dialog/filteractionmissingidentitydialog.h"
int main(int argc, char **argv)
{
QApplication app(argc, argv);
QStandardPaths::setTestModeEnabled(true);
DummyKernel *kernel = new DummyKernel(0);
CommonKernel->registerKernelIf(kernel); //register KernelIf early, it is used by the Filter classes
CommonKernel->registerSettingsIf(kernel); //SettingsIf is used in FolderTreeWidget
MailCommon::FilterActionMissingIdentityDialog *w = new MailCommon::FilterActionMissingIdentityDialog(QStringLiteral("filename"));
w->exec();
app.exec();
delete w;
return 0;
}
Loading…
Cancel
Save