File indexing completed on 2024-04-21 14:53:54

0001 /*
0002     SPDX-FileCopyrightText: 2006 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #ifndef RFC2047TEST_H
0008 #define RFC2047TEST_H
0009 
0010 #include <QObject>
0011 
0012 class RFC2047Test : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void testRFC2047decode_data();
0017     void testRFC2047decode();
0018 
0019     void testInvalidDecode_data();
0020     void testInvalidDecode();
0021 
0022     void testRFC2047encode_data();
0023     void testRFC2047encode();
0024 };
0025 
0026 #endif