File indexing completed on 2024-09-22 04:49:57

0001 /*
0002  *  SPDX-FileCopyrightText: 2017 Daniel Vrátil <dvratil@kde.org>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-only
0005  */
0006 
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 #include "gpghelper.h"
0012 
0013 class FilterActionDecryptTest : public QObject
0014 {
0015     Q_OBJECT
0016 private Q_SLOTS:
0017     void initTestCase();
0018     void cleanupTestCase();
0019 
0020     void shouldDecrypt_data();
0021     void shouldDecrypt();
0022 
0023 private:
0024     GPGHelper *mGpg = {};
0025 };