File indexing completed on 2024-05-05 03:48:42

0001 /*
0002     File                 : ReadStatFilterTest.h
0003     Project              : LabPlot
0004     Description          : Tests for the ReadStat I/O-filter.
0005     --------------------------------------------------------------------
0006     SPDX-FileCopyrightText: 2021 Stefan Gerlach <stefan.gerlach@uni.kn>
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 
0010 #ifndef READSTATFILTERTEST_H
0011 #define READSTATFILTERTEST_H
0012 
0013 #include "../../CommonTest.h"
0014 #include <QtTest>
0015 
0016 class ReadStatFilterTest : public CommonTest {
0017     Q_OBJECT
0018 
0019 private Q_SLOTS:
0020     void initTestCase();
0021 
0022     void testDTAImport();
0023     void testSASImport();
0024     void testSAVImport();
0025     void testPORImport();
0026     void testXPTImport();
0027 };
0028 
0029 #endif