File indexing completed on 2024-12-01 04:35:25
0001 /* 0002 SPDX-FileCopyrightText: 2019-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #include "notificationdesktopdurationpreferencemodeltest.h" 0008 #include "model/notificationdesktopdurationpreferencemodel.h" 0009 #include <QTest> 0010 0011 QTEST_GUILESS_MAIN(NotificationDesktopDurationPreferenceModelTest) 0012 0013 NotificationDesktopDurationPreferenceModelTest::NotificationDesktopDurationPreferenceModelTest(QObject *parent) 0014 : QObject(parent) 0015 { 0016 } 0017 0018 void NotificationDesktopDurationPreferenceModelTest::shouldHaveDefaultValue() 0019 { 0020 NotificationDesktopDurationPreferenceModel w; 0021 QCOMPARE(w.rowCount(), 6); 0022 0023 // FIXME QCOMPARE(w.currentPreference(), 0); 0024 } 0025 0026 // TODO add autotest about currentStatus changed ! 0027 0028 #include "moc_notificationdesktopdurationpreferencemodeltest.cpp"