File indexing completed on 2024-04-21 04:02:04

0001 /***************************************************************************
0002 *   KBlocks, a falling blocks game by KDE                                  *
0003 *   SPDX-FileCopyrightText: 2021 Julian Helfferich <julian.helfferich@mailbox.org>   *
0004 *                                                                          *
0005 *   SPDX-License-Identifier: GPL-2.0-or-later
0006 ***************************************************************************/
0007 #include <QTest>
0008 
0009 class testBasic : public QObject
0010 {
0011     Q_OBJECT
0012 private Q_SLOTS:
0013     void testAlwaysSuccessful();
0014 };
0015 
0016 void testBasic::testAlwaysSuccessful()
0017 {
0018     QVERIFY( true );
0019 }
0020 
0021 QTEST_MAIN(testBasic)
0022 
0023 #include "basic.moc"