stop server at the end of unittest

This commit is contained in:
Benjamin Sergeant 2019-05-21 19:53:55 -07:00
parent 633afa5bed
commit 4a845e3cc4

View File

@ -186,6 +186,8 @@ TEST_CASE("Websocket_message_queue", "[websocket_message_q]")
MsgQTestClient testClient;
testClient.run("ws://127.0.0.1:" + std::to_string(port));
REQUIRE(testClient.isSucceeded());
server.stop();
}
}