File indexing completed on 2024-12-01 12:38:40
0001 /* 0002 This file is part of the Kate project. 0003 0004 SPDX-FileCopyrightText: 2021 Waqar Ahmed <waqar.17a@gmail.com> 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #ifndef KATETEXTBLOCKTEST_H 0009 #define KATETEXTBLOCKTEST_H 0010 0011 #include <QObject> 0012 #include <QTest> 0013 0014 class KateTextBlockTest : public QObject 0015 { 0016 Q_OBJECT 0017 public: 0018 explicit KateTextBlockTest(QObject *parent = nullptr); 0019 0020 private Q_SLOTS: 0021 void basicTest(); 0022 void testWrap(); 0023 void testInsertRemoveText(); 0024 void testSplitMergeBlocks(); 0025 void testTextRanges(); 0026 }; 0027 0028 #endif // KATETEXTBLOCKTEST_H