File indexing completed on 2024-06-09 04:23:53

0001 /*
0002  * SPDX-FileCopyrightText: 2018 boud <boud@valdyas.org>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 #ifndef TESTBUNDLESTORAGE_H
0007 #define TESTBUNDLESTORAGE_H
0008 
0009 #include <QObject>
0010 
0011 class KisResourceLocator;
0012 
0013 class TestBundleStorage : public QObject
0014 {
0015     Q_OBJECT
0016 private Q_SLOTS:
0017     void initTestCase();
0018     void testMetaData();
0019     void testResourceIterator();
0020     void testTagIterator();
0021     void testResourceItem();
0022     void testResource();
0023     void testAddResource();
0024     void testResourceCaseSensitivity();
0025     void cleanupTestCase();
0026 
0027 private:
0028     
0029     QString m_dstLocation;
0030 };
0031 
0032 #endif // TESTBUNDLESTORAGE_H