Add unittest

wilder-work
Montel Laurent 11 years ago
parent 6f1872e7c4
commit 67da93b671
  1. 1
      mailmerge/tests/CMakeLists.txt
  2. 44
      mailmerge/tests/selectattachmentdialogtest.cpp
  3. 33
      mailmerge/tests/selectattachmentdialogtest.h
  4. 4
      mailmerge/widgets/selectattachmentdialog.cpp

@ -40,4 +40,5 @@ endmacro()
kmail_mailmerge(addressbookwidgettest.cpp "../widgets/selectattachmentdialog.cpp")
kmail_mailmerge(csvwidgettest.cpp "../widgets/csvwidget.cpp")
kmail_mailmerge(mailmergedialogtest.cpp "../mailmergedialog.cpp")
kmail_mailmerge(selectattachmentdialogtest.cpp "../widgets/selectattachmentdialog.cpp")

@ -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

@ -30,12 +30,14 @@ SelectAttachmentDialog::SelectAttachmentDialog(QWidget *parent)
setCaption(i18n("Attachment"));
setButtons(Ok|Cancel);
QWidget *mainWidget = new QWidget;
QWidget *mainWidget = new QWidget(this);
QVBoxLayout *vbox = new QVBoxLayout;
mainWidget->setLayout(vbox);
QLabel *lab = new QLabel(i18n("Select attachment:"));
lab->setObjectName(QLatin1String("selectattachment_label"));
vbox->addWidget(lab);
mUrlRequester = new KUrlRequester;
mUrlRequester->setObjectName(QLatin1String("urlrequester"));
mUrlRequester->setMode(KFile::LocalOnly|KFile::ExistingOnly);
vbox->addWidget(mUrlRequester);
setMainWidget(mainWidget);

Loading…
Cancel
Save