aboutsummaryrefslogtreecommitdiff
path: root/autotests/testolmsession.h
blob: c03b7b6aaf50943bef36ad7189ff282a22db8117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: 2021 Carl Schwan <carlschwan@kde.org>
//
// SPDX-License-Identifier: LGPL-2.1-or-later

#ifdef Quotient_E2EE_ENABLED
#include <QtTest/QtTest>

class TestOlmSession : public QObject
{
    Q_OBJECT
private Q_SLOTS:
    void olmOutboundSessionCreation();
    void olmEncryptDecrypt();
    void correctSessionOrdering();
};
#endif