File indexing completed on 2024-04-14 04:45:18

0001 /*
0002     SPDX-FileCopyrightText: 2011 Michal Malek <michalm@jabster.pl>
0003     SPDX-FileCopyrightText: 1998-2009 Sebastian Trueg <trueg@k3b.org>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef K3B_GLOBALS_TEST_H
0009 #define K3B_GLOBALS_TEST_H
0010 
0011 #include <QObject>
0012 
0013 class GlobalsTest : public QObject
0014 {
0015     Q_OBJECT
0016 public:
0017     GlobalsTest();
0018 private slots:
0019     void testCutFilename();
0020     void testRemoveFilenameExtension();
0021 };
0022 
0023 #endif // K3B_GLOBALS_TEST_H