File indexing completed on 2024-04-28 05:02:28

0001 /*
0002     SPDX-FileCopyrightText: 2002 Thomas Baumgart tbaumgart @kde.org
0003 
0004     This file is part of libalkimia.
0005 
0006     SPDX-License-Identifier: LGPL-2.1-or-later
0007 */
0008 
0009 #ifndef ALKEXCEPTIONTEST_H
0010 #define ALKEXCEPTIONTEST_H
0011 
0012 #include "alkexception.h"
0013 
0014 #include <QtCore/QObject>
0015 
0016 class AlkExceptionTest : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 private Q_SLOTS:
0021     void init();
0022     void cleanup();
0023 
0024     void testDefaultConstructor();
0025 
0026     void testConstructor();
0027 };
0028 #endif