File indexing completed on 2024-10-13 09:37:33
0001 /* 0002 This file is part of the KDE project 0003 SPDX-FileCopyrightText: 2019 Dominik Haumann <dhaumann@kde.org> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #ifndef KTEXTEDITOR_VARIABLE_TEST_H 0009 #define KTEXTEDITOR_VARIABLE_TEST_H 0010 0011 #include <QObject> 0012 0013 class VariableTest : public QObject 0014 { 0015 Q_OBJECT 0016 0017 public: 0018 VariableTest(); 0019 ~VariableTest() override; 0020 0021 private Q_SLOTS: 0022 void testReturnValues(); 0023 void testExactMatch_data(); 0024 void testExactMatch(); 0025 void testPrefixMatch(); 0026 void testRecursiveMatch(); 0027 void testBuiltins(); 0028 }; 0029 0030 #endif // KTEXTEDITOR_VARIABLE_TEST_H