1 /*
2     SPDX-FileCopyrightText: 2007-2009 Sergio Pistone <sergio_pistone@yahoo.com.ar>
3     SPDX-FileCopyrightText: 2010-2018 Mladen Milinkovic <max@smoothware.net>
4 
5     SPDX-License-Identifier: GPL-2.0-or-later
6 */
7 
8 #ifndef TIMETEST_H
9 #define TIMETEST_H
10 
11 #include <QObject>
12 
13 class TimeTest : public QObject
14 {
15 	Q_OBJECT
16 
17 private slots:
18 	void testConstructors();
19 	void testSetters();
20 	void testOperators();
21 };
22 
23 #endif
24