File indexing completed on 2024-04-14 05:44:28

0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 // SPDX-FileCopyrightText: 2021 Heiko Becker <heiko.becker@kde.org>
0003 
0004 #ifndef TOKEN_TEST_H
0005 #define TOKEN_TEST_H
0006 
0007 #include <QObject>
0008 
0009 /** This class contains KRename's selftest.
0010  *  The selftest consists of several unit tests for
0011  *  important classes.
0012  *
0013  *  Currently covered classes:
0014  *
0015  *  - KRenameFile
0016  */
0017 class TokenTest : public QObject
0018 {
0019     Q_OBJECT
0020 
0021 private Q_SLOTS:
0022     void initTestCase();
0023     void testTokens_data();
0024     void testTokens();
0025     void testReplacing_data();
0026     void testReplacing();
0027 };
0028 
0029 #endif // TOKEN_TEST_H