cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
24 lines
432 B
C++
24 lines
432 B
C++
/*
|
|
SPDX-FileCopyrightText: 2011 Romain Perier <bambi@kubuntu.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef KCHARSETSTEST_H
|
|
#define KCHARSETSTEST_H
|
|
|
|
#include <QObject>
|
|
|
|
class KCharsetsTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private Q_SLOTS:
|
|
void testSingleton();
|
|
void testFromEntity();
|
|
void testToEntity();
|
|
void testResolveEntities();
|
|
void testEncodingNames();
|
|
};
|
|
|
|
#endif /* KCHARSETSTEST_H */
|