File indexing completed on 2024-12-22 04:12:54
0001 /* 0002 * SPDX-FileCopyrightText: 2015 Dmitry Kazakov <dimula73@gmail.com> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef KIS_DOCUMENT_REPLACE_TEST_H_ 0008 #define KIS_DOCUMENT_REPLACE_TEST_H_ 0009 0010 #include <simpletest.h> 0011 0012 class KisDocument; 0013 class KisImage; 0014 0015 class KisDocumentReplaceTest : public QObject 0016 { 0017 Q_OBJECT 0018 void init(); 0019 void finalize(); 0020 0021 private Q_SLOTS: 0022 void testCopyFromDocument(); 0023 0024 private: 0025 KisDocument *m_doc; 0026 }; 0027 0028 #endif // KIS_DOCUMENT_REPLACE_TEST_H_