File indexing completed on 2024-04-14 03:56:09

0001 /*
0002  *   SPDX-FileCopyrightText: 2021 Andreas Cord-Landwehr <cordlandwehr@kde.org>
0003  *
0004  *   SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef CURRENCYTABLEINIT_TEST_H
0008 #define CURRENCYTABLEINIT_TEST_H
0009 
0010 #include <QObject>
0011 #include <QTest>
0012 #include <kunitconversion/converter.h>
0013 
0014 using namespace KUnitConversion;
0015 
0016 class CurrencyTableInitTest : public QObject
0017 {
0018     Q_OBJECT
0019 private Q_SLOTS:
0020     /**
0021      * Check that the currency converter is correctly initialized when currency.xml is recent and available
0022      */
0023     void testCategoryInit();
0024 };
0025 
0026 #endif