File indexing completed on 2024-11-24 04:44:09

0001 /*
0002  * SPDX-FileCopyrightText: 2012 Sofia Balicka <balicka@kolabsys.com>
0003  * SPDX-FileCopyrightText: 2014 Christian Mollekopf <mollekopf@kolabsys.com>
0004  *
0005  * SPDX-License-Identifier: LGPL-3.0-or-later
0006  */
0007 
0008 #pragma once
0009 #include <QObject>
0010 
0011 /**
0012  * Read-Write roundtrip test.
0013  *
0014  * Ensures we can read a mime message, serialize it again, and contents are still the same.
0015  */
0016 class MIMEObjectTest : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 private Q_SLOTS:
0021     void testEvent_data();
0022     void testEvent();
0023     void testTodo_data();
0024     void testTodo();
0025     void testJournal_data();
0026     void testJournal();
0027     void testNote_data();
0028     void testNote();
0029     void testContact_data();
0030     void testContact();
0031     void testDistlist_data();
0032     void testDistlist();
0033 };