File indexing completed on 2024-10-06 12:24:10
0001 /* 0002 This file is part of the KDE libraries 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef CURSOR_WORDS_TEST_H 0008 #define CURSOR_WORDS_TEST_H 0009 0010 #include <QObject> 0011 0012 class CursorWordsTest : public QObject 0013 { 0014 Q_OBJECT 0015 public: 0016 CursorWordsTest(QObject *parent = nullptr); 0017 ~CursorWordsTest() override; 0018 0019 private Q_SLOTS: 0020 void testMoveToNextWordSingleLine(); 0021 void testMoveToPrevWordSingleLine(); 0022 void testMoveToWordsMultipleLines(); 0023 }; 0024 0025 #endif // CURSOR_WORDS_TEST_H