File indexing completed on 2024-05-19 16:38:19

0001 /*
0002     SPDX-FileCopyrightText: 2013 Ivan Cukic <ivan.cukic(at)kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef RESULTSETTEST_H
0008 #define RESULTSETTEST_H
0009 
0010 #include <common/test.h>
0011 
0012 #include <KActivities/Controller>
0013 #include <memory>
0014 
0015 class ResultSetTest : public Test
0016 {
0017     Q_OBJECT
0018 public:
0019     ResultSetTest(QObject *parent = nullptr);
0020 
0021 private Q_SLOTS:
0022     void initTestCase();
0023 
0024     void testConcat();  ///< Tests test-implementation-details
0025     void testLinkedResources();
0026     void testUsedResources();
0027 
0028     void cleanupTestCase();
0029 };
0030 
0031 #endif /* RESULTSETTEST_H */