generated from general-packages/pika-pkg-template
23 lines
448 B
C
23 lines
448 B
C
|
/*
|
||
|
SPDX-FileCopyrightText: 2014-2022 Laurent Montel <montel@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class Pop3ResourceAttributeTest : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit Pop3ResourceAttributeTest(QObject *parent = nullptr);
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
void shouldHaveDefaultValue();
|
||
|
void shouldAssignValue();
|
||
|
void shouldDeserializeValue();
|
||
|
void shouldCloneAttribute();
|
||
|
};
|