File indexing completed on 2024-10-13 06:30:10
0001 /* 0002 File : JSONFilterTest.h 0003 Project : LabPlot 0004 Description : Tests for the JSON I/O-filter. 0005 -------------------------------------------------------------------- 0006 SPDX-FileCopyrightText: 2018 Andrey Cygankov <craftplace.ms@gmail.com> 0007 SPDX-License-Identifier: GPL-2.0-or-later 0008 */ 0009 0010 #ifndef JSONFILTERTEST_H 0011 #define JSONFILTERTEST_H 0012 0013 #include <QtTest> 0014 0015 class JSONFilterTest : public QObject { 0016 Q_OBJECT 0017 0018 private Q_SLOTS: 0019 void initTestCase(); 0020 0021 void testArrayImport(); 0022 void testObjectImport01(); 0023 void testObjectImport02(); 0024 void testObjectImport03(); 0025 void testObjectImport04(); 0026 }; 0027 0028 #endif