File indexing completed on 2024-05-12 15:55:37

0001 // SPDX-FileCopyrightText: 2021-2022 Johannes Zarl-Zierl <johannes@zarl-zierl.at>
0002 //
0003 // SPDX-License-Identifier: LicenseRef-KDE-Accepted-GPL
0004 
0005 #ifndef KPATHUMBNAILS_TEST_THUMBNAILCACHE_H
0006 #define KPATHUMBNAILS_TEST_THUMBNAILCACHE_H
0007 
0008 #include <QtTest/QTest>
0009 
0010 namespace KPATest
0011 {
0012 class TestThumbnailCache : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void initTestCase();
0017     /**
0018      * @brief Set up v4 index file, check index file after conversion.
0019      */
0020     void loadV4ThumbnailIndex();
0021     void insertRemove();
0022 };
0023 }
0024 
0025 #endif
0026 
0027 // vi:expandtab:tabstop=4 shiftwidth=4: