parent
6f1872e7c4
commit
67da93b671
4 changed files with 81 additions and 1 deletions
@ -0,0 +1,44 @@ |
||||
/*
|
||||
Copyright (c) 2015 Montel Laurent <montel@kde.org> |
||||
|
||||
This program is free software; you can redistribute it and/or modify it |
||||
under the terms of the GNU General Public License, version 2, as |
||||
published by the Free Software Foundation. |
||||
|
||||
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; if not, write to the Free Software Foundation, Inc., |
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||
*/ |
||||
|
||||
|
||||
#include "selectattachmentdialogtest.h" |
||||
#include "../widgets/selectattachmentdialog.h" |
||||
#include <KUrlRequester> |
||||
#include <QLabel> |
||||
#include <qtest_kde.h> |
||||
SelectAttachmentDialogTest::SelectAttachmentDialogTest(QObject *parent) |
||||
: QObject(parent) |
||||
{ |
||||
|
||||
} |
||||
|
||||
SelectAttachmentDialogTest::~SelectAttachmentDialogTest() |
||||
{ |
||||
|
||||
} |
||||
|
||||
void SelectAttachmentDialogTest::shouldHaveDefaultValue() |
||||
{ |
||||
MailMerge::SelectAttachmentDialog dlg; |
||||
QLabel *lab = qFindChild<QLabel *>(&dlg, QLatin1String("selectattachment_label")); |
||||
QVERIFY(lab); |
||||
KUrlRequester *urlRequester = qFindChild<KUrlRequester *>(&dlg, QLatin1String("urlrequester")); |
||||
QVERIFY(urlRequester); |
||||
} |
||||
|
||||
QTEST_KDEMAIN(SelectAttachmentDialogTest, GUI) |
||||
@ -0,0 +1,33 @@ |
||||
/*
|
||||
Copyright (c) 2015 Montel Laurent <montel@kde.org> |
||||
|
||||
This program is free software; you can redistribute it and/or modify it |
||||
under the terms of the GNU General Public License, version 2, as |
||||
published by the Free Software Foundation. |
||||
|
||||
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; if not, write to the Free Software Foundation, Inc., |
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||
*/ |
||||
|
||||
#ifndef SELECTATTACHMENTDIALOGTEST_H |
||||
#define SELECTATTACHMENTDIALOGTEST_H |
||||
|
||||
#include <QObject> |
||||
|
||||
class SelectAttachmentDialogTest : public QObject |
||||
{ |
||||
Q_OBJECT |
||||
public: |
||||
explicit SelectAttachmentDialogTest(QObject *parent = 0); |
||||
~SelectAttachmentDialogTest(); |
||||
private Q_SLOTS: |
||||
void shouldHaveDefaultValue(); |
||||
}; |
||||
|
||||
#endif // SELECTATTACHMENTDIALOGTEST_H
|
||||
Loading…
Reference in new issue