/* This file is part of the kholidays library. SPDX-FileCopyrightText: 2012 Allen Winter SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef TESTSUNRISE_H #define TESTSUNRISE_H #include class SunriseTest : public QObject { Q_OBJECT private Q_SLOTS: void TestSunrise(); void TestSunset(); void TestDawn(); void TestDusk(); void TestPolarDayNight(); }; #endif