mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-28 08:49:42 -05:00
20 lines
370 B
C++
20 lines
370 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 testNetworkRequestRedirects();
|
||
|
};
|
||
|
|
||
|
#endif // KEEPASSXC_TESTNETWORKREQUEST_HPP
|