1 /*
2     SPDX-FileCopyrightText: 2016-2021 Laurent Montel <montel@kde.org>
3 
4     SPDX-License-Identifier: LGPL-2.0-or-later
5 
6 */
7 
8 #pragma once
9 
10 #include <QObject>
11 
12 class RenameCategoryTest : public QObject
13 {
14     Q_OBJECT
15 public:
16     explicit RenameCategoryTest(QObject *parent = nullptr);
17     ~RenameCategoryTest() override;
18 private Q_SLOTS:
19     void shouldParseRenameLine_data();
20     void shouldParseRenameLine();
21 };
22 
23