File indexing completed on 2024-04-28 15:31:53

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 2017 David Faure <faure@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-or-later
0006 */
0007 #include <KPixmapSequenceWidget>
0008 
0009 #include <QTest>
0010 
0011 #include "kguiitem.h"
0012 
0013 static const QString INACTIVE_TEXT = QStringLiteral("Show Foo");
0014 static const QString ACTIVE_TEXT = QStringLiteral("Hide Foo");
0015 
0016 class KPixmapSequenceWidgetTest : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 private Q_SLOTS:
0021     void initTestCase()
0022     {
0023     }
0024 
0025     void testConstructor()
0026     {
0027         KPixmapSequenceWidget w;
0028     }
0029 };
0030 
0031 QTEST_MAIN(KPixmapSequenceWidgetTest)
0032 
0033 #include "kpixmapsequencewidgettest.moc"