File indexing completed on 2024-05-19 04:39:27

0001 /*
0002     SPDX-FileCopyrightText: 2012-2013 Milian Wolff <mail@milianw.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #ifndef BENCHITEMREPOSITORY_H
0008 #define BENCHITEMREPOSITORY_H
0009 
0010 #include "itemrepositorytestbase.h"
0011 
0012 class BenchItemRepository
0013     : public ItemRepositoryTestBase
0014 {
0015     Q_OBJECT
0016 
0017 private Q_SLOTS:
0018     void insert();
0019     void remove();
0020     void removeDisk();
0021     void lookupKey();
0022     void lookupValue();
0023 
0024     void shouldDoReferenceCounting_data();
0025     void shouldDoReferenceCounting();
0026 };
0027 
0028 #endif // BENCHITEMREPOSITORY_H