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

0001 /*
0002     File                 : XLSXFilterTest.h
0003     Project              : LabPlot
0004     Description          : Tests for the XLSX filter
0005     --------------------------------------------------------------------
0006     SPDX-FileCopyrightText: 2022-2023 Stefan Gerlach <stefan.gerlach@uni.kn>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 #ifndef XLSXFILTERTEST_H
0011 #define XLSXFILTERTEST_H
0012 
0013 #include "../../CommonTest.h"
0014 #include <QtTest>
0015 
0016 class XLSXFilterTest : public CommonTest {
0017     Q_OBJECT
0018 
0019 private Q_SLOTS:
0020     void importFile2Cols();
0021     void importFile3Cols();
0022     void importFile3ColsStartEndRow();
0023     void importFile3ColsStartEndColumn();
0024     void importFileEmptyCells();
0025     void importFileDatetime();
0026 };
0027 #endif