File indexing completed on 2024-04-28 16:13:23

0001 /*
0002     SPDX-FileCopyrightText: 2018 Ralf Habacker ralf.habacker @freenet.de
0003 
0004     This file is part of libalkimia.
0005 
0006     SPDX-License-Identifier: LGPL-2.1-or-later
0007 */
0008 
0009 #ifndef ALKONLINEQUOTETEST_H
0010 #define ALKONLINEQUOTETEST_H
0011 
0012 #include <QtCore/QObject>
0013 
0014 class AlkOnlineQuotesProfile;
0015 
0016 class AlkOnlineQuoteTest : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 private slots:
0021     void init();
0022     void cleanup();
0023     void testQuoteSources();
0024     void testLaunch();
0025     void testLaunchWithBrowser();
0026 private:
0027     AlkOnlineQuotesProfile *m_profile;
0028 };
0029 
0030 #endif // ALKONLINEQUOTETEST_H