File indexing completed on 2025-05-04 05:17:09

0001 /*
0002     SPDX-FileCopyrightText: 2022 Laurent Montel <montel@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-3.0-or-later
0005 */
0006 #pragma once
0007 
0008 #include <QObject>
0009 
0010 class CloneDialogTest : public QObject
0011 {
0012     Q_OBJECT
0013 public:
0014     explicit CloneDialogTest(QObject *parent = nullptr);
0015     ~CloneDialogTest() override = default;
0016 private Q_SLOTS:
0017     void shouldHaveDefaultValues();
0018     void shouldChangePath();
0019     void shouldChangePath_data();
0020 };