From c6265aeaf74906c0c51cfe400dd6dba7692f3285 Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Sat, 22 Feb 2020 16:49:56 +0100 Subject: [PATCH] chore: added default ctor for ClientProtocolTest (to initialize members properly) --- test/webfuse/tests/provider/test_client_protocol.cc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/webfuse/tests/provider/test_client_protocol.cc b/test/webfuse/tests/provider/test_client_protocol.cc index 5212f45..409efc3 100644 --- a/test/webfuse/tests/provider/test_client_protocol.cc +++ b/test/webfuse/tests/provider/test_client_protocol.cc @@ -17,6 +17,15 @@ namespace class ClientProtocolTest: public ::testing::Test { +public: + ClientProtocolTest() + : server(nullptr) + , config(nullptr) + , protocol(nullptr) + { + // empty + } + protected: void SetUp() {