File indexing completed on 2024-05-12 04:39:58

0001 /*
0002     SPDX-FileCopyrightText: 2010 Niko Sams <niko.sams@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #ifndef QTPRINTERSTEST_H
0008 #define QTPRINTERSTEST_H
0009 
0010 #include <QObject>
0011 
0012 class QtPrintersTest : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void initTestCase();
0017     void testQString();
0018     void testQByteArray();
0019     void testQListContainer_data();
0020     void testQListContainer();
0021     void testQMapInt();
0022     void testQMapString();
0023     void testQMapStringBool();
0024     void testQDate();
0025     void testQTime();
0026     void testQDateTime();
0027     void testQUrl();
0028     void testQHashInt();
0029     void testQHashString();
0030     void testQSetInt();
0031     void testQSetString();
0032     void testQChar();
0033     void testQListPOD();
0034     void testQUuid();
0035     void testQVariant();
0036     void testKTextEditorTypes();
0037     void testKDevelopTypes();
0038 };
0039 
0040 #endif