File indexing completed on 2024-04-21 03:57:16

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 2010 Bernhard Beschow <bbeschow@cs.tu-berlin.de>
0004     SPDX-FileCopyrightText: 2009-2018 Dominik Haumann <dhaumann@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef KATE_UNDOMANAGER_TEST_H
0010 #define KATE_UNDOMANAGER_TEST_H
0011 
0012 #include <QObject>
0013 
0014 class UndoManagerTest : public QObject
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     UndoManagerTest();
0020 
0021 private Q_SLOTS:
0022     void testUndoRedoCount();
0023     void testSafePoint();
0024     void testCursorPosition();
0025     void testSelectionUndo();
0026     void testUndoWordWrapBug301367();
0027     void testUndoIndentBug373009();
0028     void testUndoAfterPastingWrappingLine();
0029 };
0030 
0031 #endif