parent
567d7db5cd
commit
cbe1897336
5 changed files with 130 additions and 0 deletions
@ -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
|
||||||
@ -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…
Reference in new issue