File indexing completed on 2025-01-05 04:47:39
0001 /* 0002 SPDX-FileCopyrightText: 2010 Casey Link <unnamedrambler@gmail.com> 0003 SPDX-FileCopyrightText: 2009-2010 Klaralvdalens Datakonsult AB, a KDAB Group company <info@kdab.net> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #pragma once 0009 0010 #include <QObject> 0011 0012 namespace CalendarSupport 0013 { 0014 class FreePeriodModelTest : public QObject 0015 { 0016 Q_OBJECT 0017 private Q_SLOTS: 0018 void testModelValidity(); 0019 void testSplitByDay(); 0020 }; 0021 }