File indexing completed on 2025-01-26 04:04:55
0001 /* 0002 * SPDX-FileCopyrightText: 2019 Anna Medonosova <anna.medonosova@gmail.com> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef KOGAMUTMASKTEST_H 0008 #define KOGAMUTMASKTEST_H 0009 0010 #include <QObject> 0011 0012 class KoGamutMaskTest : public QObject 0013 { 0014 Q_OBJECT 0015 public: 0016 explicit KoGamutMaskTest(QObject *parent = nullptr); 0017 0018 private Q_SLOTS: 0019 void testCoordIsClear(); 0020 void testCoordIsClear_data(); 0021 0022 void testLoad(); 0023 void testLoad_data(); 0024 // TODO: add preview vs. non-preview testing 0025 }; 0026 0027 #endif // KOGAMUTMASKTEST_H