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

0001 /*
0002     File                 : RangeTest.h
0003     Project              : LabPlot
0004     Description          : Tests for Range
0005     --------------------------------------------------------------------
0006     SPDX-FileCopyrightText: 2021-2023 Stefan Gerlach <stefan.gerlach@uni.kn>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #ifndef RANGETEST_H
0012 #define RANGETEST_H
0013 
0014 #include "../../CommonTest.h"
0015 
0016 class RangeTest : public CommonTest {
0017     Q_OBJECT
0018 
0019 private Q_SLOTS:
0020     void testNiceExtend();
0021     void testTickCount();
0022 
0023     void testLimits();
0024 
0025     void testNiceExtendLog10();
0026     void testTickCountLog10();
0027     void testNiceExtendLog2();
0028     void testTickCountLog2();
0029     void testNiceExtendLn();
0030     void testTickCountLn();
0031 
0032     void zoomInOutIncreasingLinearRangeCenter();
0033     void zoomInOutDecreasingLinearRangeCenter();
0034     void zoomInOutIncreasingLinearRangeNotCenter();
0035     void zoomInOutDecreasingLinearRangeNotCenter();
0036 
0037     //  void testPerformance();
0038 };
0039 
0040 #endif