File indexing completed on 2025-03-09 04:03:47
0001 /* This file is part of the KDE project 0002 * SPDX-FileCopyrightText: 2007 Boudewijn Rempt (boud@valdyas.org) 0003 * 0004 * SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 #ifndef TestKoShapeFactoryBase_H 0007 #define TestKoShapeFactoryBase_H 0008 0009 #include <QObject> 0010 0011 class TestKoShapeFactory : public QObject 0012 { 0013 Q_OBJECT 0014 private Q_SLOTS: 0015 0016 // tests 0017 void testCreateFactory(); 0018 void testSupportsQDomElement(); 0019 void testPriority(); 0020 void testCreateDefaultShape(); 0021 void testCreateShape(); 0022 0023 }; 0024 0025 #endif