File indexing completed on 2024-12-29 04:49:08

0001 /*
0002     SPDX-FileCopyrightText: 2009 Constantin Berzan <exit3219@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 #include <Akonadi/Collection>
0012 
0013 /**
0014   This syncs the resource again and again, watching out for "lost"
0015   synchronized() signals.
0016  */
0017 class SyncTest : public QObject
0018 {
0019     Q_OBJECT
0020 
0021 private Q_SLOTS:
0022     void initTestCase();
0023     void testSync();
0024 
0025 private:
0026     QString mMaildirIdentifier;
0027 };