File indexing completed on 2024-05-19 15:58:27

0001 /*
0002    SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #pragma once
0007 
0008 #include <QObject>
0009 
0010 class DDPAuthenticationManagerUtilsTest : public QObject
0011 {
0012     Q_OBJECT
0013 public:
0014     explicit DDPAuthenticationManagerUtilsTest(QObject *parent = nullptr);
0015     ~DDPAuthenticationManagerUtilsTest() override = default;
0016 
0017 private Q_SLOTS:
0018     void shouldTestLoginResume();
0019     void shouldTestLdapLogin();
0020     void shouldTestloginOAuth();
0021     void shouldTestlogin();
0022     void shouldTestSendOtp();
0023 };