File indexing completed on 2025-03-09 04:53:53

0001 /*
0002   SPDX-FileCopyrightText: 2020 Sandro Knauß <knauss@kde.org>
0003 
0004   SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 namespace MessageComposer
0012 {
0013 class AutocryptHeadersJob;
0014 }
0015 
0016 class AutocryptHeadersJobTest : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 public Q_SLOTS:
0021     void initTestCase();
0022 
0023 private Q_SLOTS:
0024     void testAutocryptHeader();
0025     void testContentChained();
0026     void testAutocryptGossipHeader();
0027     void testSetGnupgHome();
0028     void testStripSenderKey();
0029 };