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 "gpghelper.h"
0010 #include <QObject>
0011 
0012 class FilterActionEncryptTest : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void initTestCase();
0017     void cleanupTestCase();
0018 
0019     void shouldEncrypt_data();
0020     void shouldEncrypt();
0021 
0022 private:
0023     GPGHelper *mGpg = {};
0024 };