File indexing completed on 2024-04-21 03:48:14

0001 /*
0002     File                 : NSLSFBasicTest.h
0003     Project              : LabPlot
0004     Description          : NSL Tests for the basic special functions
0005     --------------------------------------------------------------------
0006     SPDX-FileCopyrightText: 2019 Stefan Gerlach <stefan.gerlach@uni.kn>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 #ifndef NSLSFBASICTEST_H
0011 #define NSLSFBASICTEST_H
0012 
0013 #include "../NSLTest.h"
0014 
0015 class NSLSFBasicTest : public NSLTest {
0016     Q_OBJECT
0017 
0018 private Q_SLOTS:
0019     // log2
0020     void testlog2_int_C99();
0021     void testlog2_int();
0022     void testlog2_longlong();
0023     void testlog2_int2();
0024     void testlog2_int3();
0025     void testlog2p1_int();
0026 
0027 private:
0028     QString m_dataDir;
0029 };
0030 #endif