1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
/*
File : IntegrationTest.h
Project : LabPlot
Description : Tests for numerical integration
--------------------------------------------------------------------
SPDX-FileCopyrightText: 2018 Stefan Gerlach <stefan.gerlach@uni.kn>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef INTEGRATIONTEST_H
#define INTEGRATIONTEST_H
#include <../AnalysisTest.h>
class IntegrationTest : public AnalysisTest {
Q_OBJECT
private Q_SLOTS:
void testLinear();
// void testPerformance();
};
#endif
|