File indexing completed on 2025-02-02 04:21:09

0001 /*ls
0002  *  SPDX-FileCopyrightText: 2013 Lukáš Tvrdý <lukast.dev@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.1-or-later
0005  */
0006 
0007 #ifndef _KIS_QMIC_TESTS_H_
0008 #define _KIS_QMIC_TESTS_H_
0009 
0010 #include <simpletest.h>
0011 #include <QImage>
0012 
0013 #include "../gmic.h"
0014 
0015 class KisQmicTests : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 private:
0020     QImage m_qimage;
0021 
0022 private Q_SLOTS:
0023     void initTestCase();
0024     void cleanupTestCase();
0025     void testConvertToGmic();
0026     void testConvertGrayScaleQmic();
0027     void testConvertGrayScaleAlphaQmic();
0028     void testConvertRGBqmic();
0029     void testConvertRGBAqmic();
0030 
0031 };
0032 
0033 #endif