File indexing completed on 2025-01-19 03:57:45

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2010-01-17
0007  * Description : test parsing gpx data
0008  *
0009  * SPDX-FileCopyrightText: 2010      by Michael G. Hansen <mike at mghansen dot de>
0010  * SPDX-FileCopyrightText: 2017-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0011  *
0012  * SPDX-License-Identifier: GPL-2.0-or-later
0013  *
0014  * ============================================================ */
0015 
0016 #ifndef DIGIKAM_GEOPARSING_UTEST_H
0017 #define DIGIKAM_GEOPARSING_UTEST_H
0018 
0019 // Qt includes
0020 
0021 #include <QTest>
0022 
0023 class TestGPXParsing : public QObject
0024 {
0025     Q_OBJECT
0026 
0027 public:
0028 
0029     explicit TestGPXParsing(QObject* const parent = nullptr)
0030         : QObject(parent)
0031     {
0032     }
0033 
0034 private Q_SLOTS:
0035 
0036     void testQDateTimeParsing();
0037     void testCustomParsing();
0038 };
0039 
0040 #endif // DIGIKAM_GEOPARSING_UTEST_H