File indexing completed on 2025-01-12 04:34:20

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 "configuresettingsdialogtest.h"
0008 #include "configuredialog/configuresettingsdialog.h"
0009 #include <QStandardPaths>
0010 #include <QTest>
0011 
0012 QTEST_MAIN(ConfigureSettingsDialogTest)
0013 ConfigureSettingsDialogTest::ConfigureSettingsDialogTest(QObject *parent)
0014     : QObject(parent)
0015 {
0016     QStandardPaths::setTestModeEnabled(true);
0017 }
0018 
0019 void ConfigureSettingsDialogTest::shouldHaveDefaultValues()
0020 {
0021     ConfigureSettingsDialog w;
0022     QVERIFY(!w.windowTitle().isEmpty());
0023     // TODO (add more)
0024 }
0025 
0026 #include "moc_configuresettingsdialogtest.cpp"