File indexing completed on 2024-12-22 04:15:54
0001 /* 0002 * SPDX-FileCopyrightText: 2023 Rasyuqa A. H. <qampidh@gmail.com> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef _KIS_RGBE_TEST_H 0008 #define _KIS_RGBE_TEST_H 0009 0010 #include <simpletest.h> 0011 0012 class KisRGBETest : public QObject 0013 { 0014 Q_OBJECT 0015 0016 private Q_SLOTS: 0017 void testFiles(); 0018 void testHDR(); 0019 void testSaveRgbaColorSpace(); 0020 void testImportIncorrectFormat(); 0021 0022 #ifndef Q_OS_WIN 0023 private Q_SLOTS: 0024 void testImportFromWriteonly(); 0025 void testExportToReadonly(); 0026 #endif 0027 0028 }; 0029 0030 #endif // _KIS_RGBE_TEST_H