File indexing completed on 2024-12-22 04:12:02

0001 /*
0002  * SPDX-FileCopyrightText: 2019 boud <boud@valdyas.org>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 #ifndef TESTAGFILTERTRESOURCEPROXYMODEL_H
0007 #define TESTAGFILTERTRESOURCEPROXYMODEL_H
0008 
0009 #include <QObject>
0010 #include <QtSql>
0011 
0012 class KisResourceLocator;
0013 
0014 class TestStorageFilterProxyModel : public QObject
0015 {
0016     Q_OBJECT
0017 private Q_SLOTS:
0018     void initTestCase();
0019     void testWithTagModelTester();
0020     void testFilterByName();
0021     void testFilterByType();
0022     void testFilterByActive();
0023     void cleanupTestCase();
0024 private:
0025 
0026     QString m_srcLocation;
0027     QString m_dstLocation;
0028 
0029     KisResourceLocator *m_locator;
0030 
0031 };
0032 
0033 #endif