File indexing completed on 2024-06-02 04:25:23

0001 /*
0002  *  SPDX-FileCopyrightText: 2023 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 #ifndef TESTKUNDO2STACK_H
0007 #define TESTKUNDO2STACK_H
0008 
0009 #include <simpletest.h>
0010 #include <QObject>
0011 
0012 class TestKUndo2Stack : public QObject
0013 {
0014     Q_OBJECT
0015 
0016 private Q_SLOTS:
0017     void testExcludeFromMerge();
0018     void testMergeTimeout();
0019     void testGroupSeparation();
0020     void testMaxGroupDuration();
0021     void testCleanIndexAfterMerge();
0022     void testCleanIndexBeforeMerge();
0023 };
0024 
0025 #endif // TESTKUNDO2STACK_H