File indexing completed on 2024-12-22 04:10:29

0001 /*
0002  * SPDX-FileCopyrightText: 2018 boud <boud@valdyas.org>
0003  * SPDX-FileCopyrightText: 2019 Agata Cacko <cacko.azh@gmail.com>
0004  *
0005  * SPDX-License-Identifier: GPL-2.0-or-later
0006  */
0007 
0008 #ifndef TESTASLSTORAGE_H
0009 #define TESTASLSTORAGE_H
0010 
0011 
0012 #include <QObject>
0013 
0014 class TestAslStorage : public QObject
0015 {
0016     Q_OBJECT
0017 private Q_SLOTS:
0018     void initTestCase();
0019     void testResourceIterator_data();
0020     void testResourceIterator();
0021     void testTagIterator_data();
0022     void testTagIterator();
0023     void testResourceItem_data();
0024     void testResourceItem();
0025     void testResource_data();
0026     void testResource();
0027 };
0028 
0029 #endif // TESTASLSTORAGE_H