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

0001 /*
0002     This file is part of the Kate project.
0003 
0004     SPDX-FileCopyrightText: 2021 Jan Paul Batrina <jpmbatrina01@gmail.com>
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef KATE_ENCODINGTEST_H
0009 #define KATE_ENCODINGTEST_H
0010 
0011 #include <QObject>
0012 #include <QTest>
0013 
0014 //  TODO: Incorporate kateencodingtest.cpp here
0015 
0016 class KateEncodingTest : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 private Q_SLOTS:
0021     void utfBomTest();
0022     void nonUtfNoBomTest();
0023 };
0024 
0025 #endif // KATE_ENCODINGTEST_H