File indexing completed on 2024-11-10 04:40:13

0001 /*
0002     SPDX-FileCopyrightText: 2006 Volker Krause <vkrause@kde.org>
0003     SPDX-FileCopyrightText: 2007 Robert Zwerus <arzie@dds.nl>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #pragma once
0009 
0010 #include <QObject>
0011 
0012 class ItemStoreTest : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void initTestCase();
0017     void testFlagChange();
0018     void testDataChange_data();
0019     void testDataChange();
0020     void testRemoteId_data();
0021     void testRemoteId();
0022     void testMultiPart();
0023     void testPartRemove();
0024     void testRevisionCheck();
0025     void testModificationTime();
0026     void testRemoteIdRace();
0027     void itemModifyJobShouldOnlySendModifiedAttributes();
0028     void testParallelJobsAddingAttributes();
0029 };