File indexing completed on 2024-05-12 16:43:40

0001 /*
0002     SPDX-FileCopyrightText: 2012 Thomas Baumgart <ipwizard@users.sourceforge.net>
0003     SPDX-FileCopyrightText: 2015 Christian Dávid <christian-david@web.de>
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KMYMONEYUTILSTEST_H
0008 #define KMYMONEYUTILSTEST_H
0009 
0010 #include <QObject>
0011 #include <QList>
0012 
0013 #define KMM_MYMONEY_UNIT_TESTABLE friend class KMyMoneyUtilsTest;
0014 
0015 #include "kmymoneyutils.h"
0016 
0017 class KMyMoneyUtilsTest : public QObject
0018 {
0019     Q_OBJECT
0020 protected:
0021 
0022 private Q_SLOTS:
0023     void initTestCase();
0024     void init();
0025     void cleanup();
0026     void testNextCheckNumber();
0027 };
0028 
0029 #endif