File indexing completed on 2024-04-28 16:01:13

0001 /*
0002  * SPDX-FileCopyrightText: 2020-2021 Han Young <hanyoung@protonmail.com>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 #pragma once
0007 
0008 #include <QObject>
0009 #include <QTest>
0010 #include <kweathercore/sunrise.h>
0011 
0012 using namespace KWeatherCore;
0013 
0014 class SunriseTest : public QObject
0015 {
0016     Q_OBJECT
0017 private Q_SLOTS:
0018     void testJson();
0019 
0020 private:
0021     Sunrise d1;
0022     Sunrise d2;
0023 };