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

0001 /*
0002     File                 : NSLPeakTest.h
0003     Project              : LabPlot
0004     Description          : NSL Tests for peak functions
0005     --------------------------------------------------------------------
0006     SPDX-FileCopyrightText: 2023 Stefan Gerlach <stefan.gerlach@uni.kn>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 #ifndef NSLPEAKTEST_H
0011 #define NSLPEAKTEST_H
0012 
0013 #include "../NSLTest.h"
0014 
0015 class NSLPeakTest : public NSLTest {
0016     Q_OBJECT
0017 
0018 private Q_SLOTS:
0019     void testPeakSimple();
0020     void testPeakHeight();
0021     void testPeakDistance();
0022     void testPeakHeightDistance();
0023     // performance
0024     // void testPerformance();
0025 };
0026 #endif