File indexing completed on 2024-06-23 04:27:06

0001 /*
0002  * KDE. Krita Project.
0003  *
0004  * SPDX-FileCopyrightText: 2020 Deif Lou <ginoba@gmail.com>
0005  *
0006  * SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 
0009 #ifndef KISSCREENTONEGENERATORTEST_H
0010 #define KISSCREENTONEGENERATORTEST_H
0011 
0012 #include <simpletest.h>
0013 
0014 class KisScreentoneGeneratorTest : public QObject
0015 {
0016     Q_OBJECT
0017 
0018 private Q_SLOTS:
0019     void initTestCase();
0020     void testGenerate01();
0021     void testGenerate02();
0022     void testGenerate03();
0023     void testGenerate04();
0024     void testGenerate05();
0025     void testGenerate06();
0026     void testGenerate07();
0027     void testGenerate08();
0028     void testGenerate09();
0029 };
0030 
0031 #endif