File indexing completed on 2024-04-28 16:49:46

0001 /*
0002     SPDX-FileCopyrightText: 2014 Gregor Mi <codestruct@posteo.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef CHRONOTEST_H
0008 #define CHRONOTEST_H
0009 
0010 #include <QObject>
0011 class testChrono : public QObject
0012 {
0013     Q_OBJECT
0014 
0015 private slots:
0016     void testTimeMethods();
0017     void testsecondsToHumanString1();
0018 };
0019 
0020 #endif