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

0001 /*
0002   SPDX-FileCopyrightText: 2021 Sandro Knauß <knauss@kde.org>
0003 
0004   SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QDir>
0010 #include <QObject>
0011 
0012 class KeyResolverTest : public QObject
0013 {
0014     Q_OBJECT
0015 
0016 private Q_SLOTS:
0017     void initTestCase();
0018     void init();
0019     void cleanup();
0020 
0021     void testAutocrypt();
0022 
0023 private:
0024     QDir baseDir;
0025 };