File indexing completed on 2024-12-01 04:35:22
0001 /* 0002 SPDX-FileCopyrightText: 2021-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #include "customsoundinfotest.h" 0008 #include "customsound/customsoundinfo.h" 0009 #include <QTest> 0010 QTEST_GUILESS_MAIN(CustomSoundInfoTest) 0011 CustomSoundInfoTest::CustomSoundInfoTest(QObject *parent) 0012 : QObject(parent) 0013 { 0014 } 0015 0016 void CustomSoundInfoTest::shouldHaveDefaultValues() 0017 { 0018 CustomSoundInfo info; 0019 QVERIFY(info.identifier().isEmpty()); 0020 QVERIFY(info.name().isEmpty()); 0021 QVERIFY(info.extension().isEmpty()); 0022 QVERIFY(!info.isValid()); 0023 // TODO 0024 } 0025 0026 #include "moc_customsoundinfotest.cpp"