File indexing completed on 2024-10-27 04:58:05
0001 // Copyright 2009 Thomas McGuire <mcguire@kde.org> 0002 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0003 0004 #pragma once 0005 0006 #include <QObject> 0007 0008 namespace MimeTreeParser 0009 { 0010 0011 class CryptoHelperTest : public QObject 0012 { 0013 Q_OBJECT 0014 0015 private Q_SLOTS: 0016 void testPMFDEmpty(); 0017 void testPMFDWithNoPGPBlock(); 0018 void testPGPBlockType(); 0019 void testDeterminePGPBlockType(); 0020 void testEmbededPGPBlock(); 0021 void testClearSignedMessage(); 0022 void testMultipleBlockMessage(); 0023 }; 0024 0025 }