File indexing completed on 2024-03-24 15:28:47

0001 /*
0002     This file is part of the kholidays library.
0003 
0004     SPDX-FileCopyrightText: 2012 Allen Winter <winter@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef TESTSUNRISE_H
0010 #define TESTSUNRISE_H
0011 
0012 #include <QObject>
0013 
0014 class SunriseTest : public QObject
0015 {
0016     Q_OBJECT
0017 private Q_SLOTS:
0018     void TestSunrise();
0019     void TestSunset();
0020     void TestDawn();
0021     void TestDusk();
0022     void TestPolarDayNight();
0023 };
0024 
0025 #endif