mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-02 18:37:04 -04:00
19 lines
370 B
C++
19 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
|