File indexing completed on 2024-05-26 04:28:56

0001 /* This file is part of the KDE project
0002    SPDX-FileCopyrightText: 2017 Boudewijn Rempt
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #ifndef TESTKRITA_H
0007 #define TESTKRITA_H
0008 
0009 #include <QObject>
0010 class Window;
0011 
0012 class TestKrita : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void initTestCase();
0017     void testKrita();
0018     void cleanupTestCase();
0019 private:
0020     Window *m_win {0};
0021 };
0022 
0023 #endif
0024