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

0001 /*
0002     SPDX-FileCopyrightText: 2018 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 ALKONLINEQUOTESOURCETEST_H
0010 #define ALKONLINEQUOTESOURCETEST_H
0011 
0012 #include <QtCore/QObject>
0013 
0014 class AlkOnlineQuoteSource;
0015 
0016 class AlkOnlineQuoteSourceTest : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 private Q_SLOTS:
0021     void init();
0022     void cleanup();
0023     void emptyCtor();
0024     void copyCtor();
0025     void assignOperator();
0026     void testReadWriteRemove();
0027     void testRename();
0028 };
0029 
0030 #endif // ALKONLINEQUOTESOURCETEST_H