Warning, file /libraries/kreport/autotests/format/FormatTest.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /* This file is part of the KDE project
0002  * Copyright (C) 2012 Dag Andersen <danders@get2net.dk>
0003  * Copyright (C) 2015 Jarosław Staniek <staniek@kde.org>
0004  *
0005  * This library is free software; you can redistribute it and/or
0006  * modify it under the terms of the GNU Lesser General Public
0007  * License as published by the Free Software Foundation; either
0008  * version 2.1 of the License, or (at your option) any later version.
0009  *
0010  * This library is distributed in the hope that it will be useful,
0011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
0013  * Lesser General Public License for more details.
0014  *
0015  * You should have received a copy of the GNU Lesser General Public
0016  * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
0017  */
0018 
0019 #ifndef FORMATTEST_H
0020 #define FORMATTEST_H
0021 
0022 #include <QObject>
0023 
0024 //! Tests for the .kreport format
0025 class FormatTest : public QObject
0026 {
0027     Q_OBJECT
0028 private Q_SLOTS:
0029     void testPageLayout();
0030     void testLineElement();
0031     void testLabelElement();
0032 };
0033 
0034 #endif // FORMATTEST_H