easyssl/tests/units/authtest.h

27 lines
485 B
C
Raw Normal View History

2023-03-26 19:36:35 +03:00
//#
2024-12-30 22:42:41 +01:00
//# Copyright (C) 2020-2025 QuasarApp.
2023-03-26 21:25:15 +02:00
//# Distributed under the GPLv3 software license, see the accompanying
2023-03-26 19:36:35 +03:00
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
2023-03-26 21:13:39 +02:00
#ifndef AUTH_TEST_H
#define AUTH_TEST_H
2023-03-26 19:36:35 +03:00
#include "test.h"
#include "testutils.h"
#include <QtTest>
2023-03-26 21:13:39 +02:00
class AuthTest: public Test, protected TestUtils
2023-03-26 19:36:35 +03:00
{
public:
2023-03-26 21:13:39 +02:00
AuthTest();
~AuthTest();
2023-03-26 19:36:35 +03:00
void test();
};
2023-03-26 21:13:39 +02:00
#endif // AUTH_TEST_H