File indexing completed on 2024-04-21 05:51:41

0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 // SPDX-FileCopyrightText: 2007 Dominik Seichter <domseichter@web.de>
0003 
0004 #ifndef KRENAMEFILE_TEST_H
0005 #define KRENAMEFILE_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 KRenameFileTest : public QObject
0018 {
0019     Q_OBJECT
0020 
0021 private Q_SLOTS:
0022     void initTestCase();
0023     void testKRenameFile_data();
0024     void testKRenameFile();
0025 };
0026 
0027 #endif // KRENAMEFILE_TEST_H