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 RESULTWATCHERTEST_H
0008 #define RESULTWATCHERTEST_H
0009 
0010 #include <common/test.h>
0011 
0012 #include <KActivities/Controller>
0013 #include <memory>
0014 
0015 class ResultWatcherTest : public Test
0016 {
0017     Q_OBJECT
0018 public:
0019     ResultWatcherTest(QObject *parent = nullptr);
0020 
0021 private Q_SLOTS:
0022     void initTestCase();
0023 
0024     void testLinkedResources();
0025     void testUsedResources();
0026 
0027     void cleanupTestCase();
0028 };
0029 
0030 #endif /* RESULTWATCHERTEST_H */