1 // SPDX-FileCopyrightText: 2021 Johannes Zarl-Zierl <johannes@zarl-zierl.at>
2 //
3 // SPDX-License-Identifier: LicenseRef-KDE-Accepted-GPL
4 
5 #ifndef KPATHUMBNAILS_TEST_THUMBNAILCACHE_H
6 #define KPATHUMBNAILS_TEST_THUMBNAILCACHE_H
7 
8 #include <QtTest/QTest>
9 
10 namespace KPATest
11 {
12 class TestExifDatabase : public QObject
13 {
14     Q_OBJECT
15 private slots:
16     void initTestCase();
17     void trivialTests();
18 };
19 }
20 
21 #endif
22 
23 // vi:expandtab:tabstop=4 shiftwidth=4:
24