File indexing completed on 2025-02-16 04:40:26
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 ALKONLINEQUOTEPRIVATETEST_H 0010 #define ALKONLINEQUOTEPRIVATETEST_H 0011 0012 0013 #include "alkonlinequote.h" 0014 0015 #include <QtCore/QObject> 0016 0017 class AlkOnlineQuotePrivateTest : public AlkOnlineQuote 0018 { 0019 Q_OBJECT 0020 public: 0021 AlkOnlineQuotePrivateTest(); 0022 0023 private Q_SLOTS: 0024 void testParsePrice(); 0025 void testParseQuoteCSVSingleLine(); 0026 void testParseQuoteCSVMultipleLines(); 0027 void testParseQuoteCSVDateRange(); 0028 }; 0029 0030 #endif // ALKONLINEQUOTEPRIVATETEST_H