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