File indexing completed on 2024-04-28 03:48:06

0001 /*
0002     File                 : BarPlotTest.h
0003     Project              : LabPlot
0004     Description          : Tests for BarPlot
0005     --------------------------------------------------------------------
0006     SPDX-FileCopyrightText: 2022-2023 Alexander Semke <alexander.semke@web.de>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #ifndef BARPLOTTEST_H
0012 #define BARPLOTTEST_H
0013 
0014 #include "../../CommonTest.h"
0015 
0016 class BarPlotTest : public CommonTest {
0017     Q_OBJECT
0018 
0019 private Q_SLOTS:
0020     // bar plot
0021     void testRange01();
0022     void testRange02();
0023     void testRange03();
0024     void testRange04();
0025     void testRange05();
0026 
0027     // lollipop plot
0028     void testRangeLollipopPlot01();
0029     void testRangeLollipopPlot02();
0030 };
0031 
0032 #endif