File indexing completed on 2024-12-22 04:28:16

0001 /*
0002    SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #include "emoticoncategorytest.h"
0007 #include "emoticoncategory.h"
0008 #include <QTest>
0009 QTEST_GUILESS_MAIN(EmoticonCategoryTest)
0010 
0011 EmoticonCategoryTest::EmoticonCategoryTest(QObject *parent)
0012     : QObject{parent}
0013 {
0014 }
0015 
0016 void EmoticonCategoryTest::shouldHaveDefaultValues()
0017 {
0018     TextEmoticonsCore::EmoticonCategory w;
0019     QVERIFY(w.name().isEmpty());
0020     QVERIFY(w.category().isEmpty());
0021     QVERIFY(w.i18nName().isEmpty());
0022     QCOMPARE(w.order(), 20);
0023 }
0024 
0025 #include "moc_emoticoncategorytest.cpp"