File indexing completed on 2025-03-09 04:10:11

0001 /*
0002  *  SPDX-FileCopyrightText: 2020 Ashwin Dhakaita <ashwingpdhakaita@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef KIS_MYPAINTOP_TEST_H
0008 #define KIS_MYPAINTOP_TEST_H
0009 
0010 #include <QObject>
0011 #include <stroke_testing_utils.h>
0012 #include <qimage_based_test.h>
0013 #include <simpletest.h>
0014 #include <QtTest/QtTest>
0015 
0016 class KisMyPaintOpTest: public QObject, public TestUtil::QImageBasedTest
0017 {
0018     Q_OBJECT
0019 public:
0020     KisMyPaintOpTest();
0021     virtual ~KisMyPaintOpTest() {}
0022 
0023 private Q_SLOTS:
0024     void testDab();
0025     void testGetColor();
0026     void testLoading();
0027 };
0028 
0029 #endif // KIS_MYPAINTOP_TEST_H