1 /*
2     This file is part of the Okteta Core library, made within the KDE community.
3 
4     SPDX-FileCopyrightText: 2008 Friedrich W. H. Kossebau <kossebau@kde.org>
5 
6     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7 */
8 
9 #ifndef PIECETABLECHANGEHISTORYTEST_HPP
10 #define PIECETABLECHANGEHISTORYTEST_HPP
11 
12 // Qt
13 #include <QObject>
14 
15 namespace KPieceTable {
16 
17 class PieceTableChangeHistoryTest : public QObject
18 {
19     Q_OBJECT
20 
21 private Q_SLOTS: // test functions
22     void testSimpleConstructor();
23     void testAppendChange();
24     void testRevertBeforeChange();
25 };
26 
27 }
28 
29 #endif
30