1 /*
2   This file is part of the kcalcore library.
3   SPDX-FileCopyrightText: 2007 Allen Winter <winter@kde.org>
4 
5   SPDX-License-Identifier: LGPL-2.0-or-later
6 */
7 
8 #ifndef TESTFILESTORAGE_H
9 #define TESTFILESTORAGE_H
10 
11 #include <QObject>
12 
13 class FileStorageTest : public QObject
14 {
15     Q_OBJECT
16 private Q_SLOTS:
17     void testValidity();
18     void testSave();
19     void testSaveLoadSave();
20 
21     /** Saves an incidence with éèü chars, then reads the file into a second incidence
22         and compares both incidences. The comparison should yield true.
23     */
24     void testSpecialChars();
25 };
26 
27 #endif
28