Warning, file /graphics/krita/plugins/impex/psd/tests/kis_psd_test.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002  * SPDX-FileCopyrightText: 2009 Boudewijn Rempt <boud@valdyas.org>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef _KIS_PSD_TEST_H_
0008 #define _KIS_PSD_TEST_H_
0009 
0010 #include <simpletest.h>
0011 
0012 class KisPSDTest : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void testFiles();
0017     void testOpening();
0018     void testTransparencyMask();
0019     void testOpenGrayscaleMultilayered();
0020     void testOpenGroupLayers();
0021     void testOpenLayerStyles();
0022 
0023     void testOpenFillLayers();
0024 
0025     void testOpenLayerStylesWithPattern();
0026     void testOpenLayerStylesWithPatternMulti();
0027 
0028     void testSaveLayerStylesWithPatternMulti();
0029 
0030     void testOpeningFromOpenCanvas();
0031     void testOpeningAllFormats();
0032     void testSavingAllFormats();
0033 
0034 
0035     void testImportFromWriteonly();
0036     void testExportToReadonly();
0037     void testImportIncorrectFormat();
0038 };
0039 
0040 #endif