File indexing completed on 2024-12-22 04:15:45
0001 /* 0002 * SPDX-FileCopyrightText: 2007 Boudewijn Rempt boud @valdyas.org 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef KIS_KRA_SAVER_TEST_H 0008 #define KIS_KRA_SAVER_TEST_H 0009 0010 #include <simpletest.h> 0011 0012 class KisKraSaverTest : public QObject 0013 { 0014 Q_OBJECT 0015 private Q_SLOTS: 0016 0017 void initTestCase(); 0018 0019 void testCrashyShapeLayer(); 0020 0021 // XXX: Also test roundtripping of metadata 0022 void testRoundTrip(); 0023 0024 void testSaveEmpty(); 0025 void testRoundTripFillLayerColor(); 0026 void testRoundTripFillLayerPattern(); 0027 0028 void testRoundTripLayerStyles(); 0029 0030 void testRoundTripAnimation(); 0031 0032 void testRoundTripColorizeMask(); 0033 0034 void testRoundTripShapeLayer(); 0035 void testRoundTripShapeSelection(); 0036 void testRoundTripStoryboard(); 0037 0038 void testExportToReadonly(); 0039 0040 }; 0041 0042 #endif