1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00

chore: added default ctor for ClientProtocolTest (to initialize members properly)

This commit is contained in:
Falk Werner 2020-02-22 16:49:56 +01:00
parent e21c716d34
commit c6265aeaf7

View File

@ -17,6 +17,15 @@ namespace
class ClientProtocolTest: public ::testing::Test
{
public:
ClientProtocolTest()
: server(nullptr)
, config(nullptr)
, protocol(nullptr)
{
// empty
}
protected:
void SetUp()
{