From afbe2cff39e2b162b59f8998ca73d7afddf99b23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Lien=20Sell=C3=A6g?= Date: Tue, 16 May 2017 22:52:16 +0200 Subject: [PATCH] add ws test boilerplate --- toREST/tests/ws_test.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 toREST/tests/ws_test.cpp diff --git a/toREST/tests/ws_test.cpp b/toREST/tests/ws_test.cpp new file mode 100644 index 0000000..10c7f3e --- /dev/null +++ b/toREST/tests/ws_test.cpp @@ -0,0 +1,7 @@ +#include +#include + +SCENARIO("the test suite is working") { + REQUIRE(true); + REQUIRE_FALSE(false); +}