File indexing completed on 2024-11-03 09:47:06
0001 /* 0002 File : ParserTest.h 0003 Project : LabPlot 0004 Description : Tests for the Parser 0005 -------------------------------------------------------------------- 0006 SPDX-FileCopyrightText: 2020 Stefan Gerlach <stefan.gerlach@uni.kn> 0007 0008 SPDX-License-Identifier: GPL-2.0-or-later 0009 */ 0010 0011 #ifndef PARSERTEST_H 0012 #define PARSERTEST_H 0013 0014 #include "../../CommonTest.h" 0015 0016 class ParserTest : public CommonTest { 0017 Q_OBJECT 0018 0019 private Q_SLOTS: 0020 void testBasics(); 0021 void testErrors(); 0022 void testVariables(); 0023 void testLocale(); 0024 0025 void testPerformance1(); 0026 void testPerformance2(); 0027 }; 0028 0029 #endif