mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-31 18:26:20 -05:00
22 lines
414 B
C++
22 lines
414 B
C++
|
|
#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();
|
|
void testNetworkRequestTimeout_data();
|
|
|
|
void testNetworkRequestRedirects();
|
|
};
|
|
|
|
#endif // KEEPASSXC_TESTNETWORKREQUEST_HPP
|