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

0001 /*
0002     SPDX-FileCopyrightText: 2011 Romain Perier <bambi@kubuntu.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KCHARSETSTEST_H
0008 #define KCHARSETSTEST_H
0009 
0010 #include <QObject>
0011 
0012 class KCharsetsTest : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void testSingleton();
0017     void testCodecForName_data();
0018     void testCodecForName();
0019     void testFromEntity();
0020     void testToEntity();
0021     void testResolveEntities();
0022     void testEncodingNames();
0023     void testUsAsciiEncoding_data();
0024     void testUsAsciiEncoding();
0025     void testUsAsciiDecoding_data();
0026     void testUsAsciiDecoding();
0027 };
0028 
0029 #endif /* KCHARSETSTEST_H */