generated from general-packages/pika-pkg-template
18 lines
297 B
C
18 lines
297 B
C
|
/*
|
||
|
SPDX-FileCopyrightText: 2007 Volker Krause <vkrause@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class MailSerializerPluginTest : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
private Q_SLOTS:
|
||
|
void testMailPlugin();
|
||
|
void testMessageIntegrity();
|
||
|
};
|