File indexing completed on 2024-09-22 04:18:57

0001 /*
0002   SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004   SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #include "emoticoncategorybuttontest.h"
0007 #include "emoticoncategorybutton.h"
0008 #include <QTest>
0009 QTEST_MAIN(EmoticonCategoryButtonTest)
0010 EmoticonCategoryButtonTest::EmoticonCategoryButtonTest(QObject *parent)
0011     : QObject{parent}
0012 {
0013 }
0014 
0015 void EmoticonCategoryButtonTest::shouldHaveDefaultValues()
0016 {
0017     TextEmoticonsWidgets::EmoticonCategoryButton w;
0018     QVERIFY(w.isCheckable());
0019     QVERIFY(w.autoRaise());
0020 }
0021 
0022 #include "moc_emoticoncategorybuttontest.cpp"