File indexing completed on 2024-06-09 04:59:05

0001 /*
0002    SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "showattachmentdialogtest.h"
0008 #include "dialogs/showattachmentdialog.h"
0009 #include "dialogs/showattachmentwidget.h"
0010 #include <QDialogButtonBox>
0011 #include <QStandardPaths>
0012 #include <QTest>
0013 #include <QVBoxLayout>
0014 QTEST_MAIN(ShowAttachmentDialogTest)
0015 ShowAttachmentDialogTest::ShowAttachmentDialogTest(QObject *parent)
0016     : QObject(parent)
0017 {
0018     QStandardPaths::setTestModeEnabled(true);
0019 }
0020 
0021 void ShowAttachmentDialogTest::shouldHaveDefaultValues()
0022 {
0023     ShowAttachmentDialog w(nullptr);
0024     QVERIFY(!w.windowTitle().isEmpty());
0025 
0026     auto mainLayout = w.findChild<QVBoxLayout *>(QStringLiteral("mainLayout"));
0027     QVERIFY(mainLayout);
0028 
0029     auto mShowAttachmentWidget = w.findChild<ShowAttachmentWidget *>(QStringLiteral("mShowAttachmentWidget"));
0030     QVERIFY(mShowAttachmentWidget);
0031 
0032     auto button = w.findChild<QDialogButtonBox *>(QStringLiteral("button"));
0033     QVERIFY(button);
0034 }
0035 
0036 #include "moc_showattachmentdialogtest.cpp"