2023-05-09 18:59:16 -04:00
|
|
|
|
|
|
|
#ifndef KEEPASSXC_TESTNETWORKREQUEST_HPP
|
|
|
|
#define KEEPASSXC_TESTNETWORKREQUEST_HPP
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
class TestNetworkRequest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void testNetworkRequest();
|
|
|
|
void testNetworkRequest_data();
|
|
|
|
|
|
|
|
void testNetworkRequestTimeout();
|
2023-05-25 11:10:00 -04:00
|
|
|
void testNetworkRequestTimeout_data();
|
|
|
|
|
2023-05-09 18:59:16 -04:00
|
|
|
void testNetworkRequestRedirects();
|
2023-05-26 10:08:59 -04:00
|
|
|
void testNetworkRequestRedirects_data();
|
2023-05-31 15:31:57 -04:00
|
|
|
|
|
|
|
void testNetworkRequestTimeoutWithRedirects();
|
2023-05-31 18:50:32 -04:00
|
|
|
|
|
|
|
void testNetworkRequestSecurityParameter();
|
|
|
|
void testNetworkRequestSecurityParameter_data();
|
2023-05-09 18:59:16 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KEEPASSXC_TESTNETWORKREQUEST_HPP
|