1 /*
2     SPDX-FileCopyrightText: 2019-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 ChangeDebugModeJobTest : public QObject
13 {
14     Q_OBJECT
15 public:
16     explicit ChangeDebugModeJobTest(QObject *parent = nullptr);
17     ~ChangeDebugModeJobTest() override = default;
18 private Q_SLOTS:
19     void shouldHaveDefaultValue();
20     void shouldBeAbleToStart();
21     void shouldBeAbleToStartWithoutArgument();
22     void shouldConvertToLoggingType();
23 };
24 
25