File indexing completed on 2025-01-26 04:11:10
0001 /* 0002 * SPDX-FileCopyrightText: 2022 L. E. Segovia <amy@amyspark.me> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef _KIS_WEBP_TEST_H_ 0008 #define _KIS_WEBP_TEST_H_ 0009 0010 #include <simpletest.h> 0011 0012 class KisWebPTest : public QObject 0013 { 0014 Q_OBJECT 0015 0016 private Q_SLOTS: 0017 void testAnimation(); 0018 void testAnimationWithTail(); 0019 void testFiles(); 0020 void testImportIncorrectFormat(); 0021 0022 #ifndef Q_OS_WIN 0023 private Q_SLOTS: 0024 void testImportFromWriteonly(); 0025 void testExportToReadonly(); 0026 #endif 0027 }; 0028 0029 #endif