/* This file is part of kcontacts. SPDX-FileCopyrightText: 2016 Benjamin Löwe SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef DATETIMETEST_H #define DATETIMETEST_H #include class DateTimeTest : public QObject { Q_OBJECT public: explicit DateTimeTest(QObject *parent = nullptr); ~DateTimeTest() override; private Q_SLOTS: void shouldParseDateTime(); void shouldCreateDateTime(); void shouldCreateDate(); }; #endif // DATETIMETEST_H