File indexing completed on 2024-05-26 05:05:43

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 "configurenotificationdialogtest.h"
0008 #include "dialogs/configurenotificationdialog.h"
0009 #include "dialogs/configurenotificationwidget.h"
0010 #include <QDialogButtonBox>
0011 #include <QStandardPaths>
0012 #include <QTest>
0013 #include <QVBoxLayout>
0014 QTEST_MAIN(ConfigureNotificationDialogTest)
0015 ConfigureNotificationDialogTest::ConfigureNotificationDialogTest(QObject *parent)
0016     : QObject(parent)
0017 {
0018     QStandardPaths::setTestModeEnabled(true);
0019 }
0020 
0021 void ConfigureNotificationDialogTest::shouldHaveDefaultValues()
0022 {
0023     ConfigureNotificationDialog w(nullptr);
0024     QVERIFY(!w.windowTitle().isEmpty());
0025     auto mainLayout = w.findChild<QVBoxLayout *>(QStringLiteral("mainLayout"));
0026     QVERIFY(mainLayout);
0027 
0028     auto mConfigureNoticationWidget = w.findChild<ConfigureNotificationWidget *>(QStringLiteral("mConfigureNoticationWidget"));
0029     QVERIFY(mConfigureNoticationWidget);
0030 
0031     auto buttonBox = w.findChild<QDialogButtonBox *>(QStringLiteral("buttonBox"));
0032     QVERIFY(buttonBox);
0033 }
0034 
0035 #include "moc_configurenotificationdialogtest.cpp"