File indexing completed on 2024-10-13 06:30:11
0001 /* 0002 File : OdsFilterTest.h 0003 Project : LabPlot 0004 Description : Tests for the Ods filter 0005 -------------------------------------------------------------------- 0006 SPDX-FileCopyrightText: 2023 Stefan Gerlach <stefan.gerlach@uni.kn> 0007 0008 SPDX-License-Identifier: GPL-2.0-or-later 0009 */ 0010 #ifndef ODSFILTERTEST_H 0011 #define ODSFILTERTEST_H 0012 0013 #include "../../CommonTest.h" 0014 #include <QtTest> 0015 0016 class OdsFilterTest : public CommonTest { 0017 Q_OBJECT 0018 0019 private Q_SLOTS: 0020 void importFile3SheetsRangesFormula(); // check types, ranges and formula 0021 void importFile3SheetsWorkbook(); // check workbook import 0022 void importFileMatrix(); // check import to matrix 0023 void importFileSheetStartEndRow(); // check giving start and end row 0024 void importFileSheetStartEndColumn(); // check giving start and end column 0025 void importFileSheetWithHeader(); // check importing header from first row 0026 }; 0027 #endif