From a5dfe37514199fb447a83ce18ee61a676ab8aeb3 Mon Sep 17 00:00:00 2001 From: Jonas Zeunert Date: Mon, 23 Jul 2018 23:16:23 +0200 Subject: [PATCH] input driver factory test --- .../tests/input/TestInputDriverFactory.cpp | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 FlippR-Driver/tests/input/TestInputDriverFactory.cpp diff --git a/FlippR-Driver/tests/input/TestInputDriverFactory.cpp b/FlippR-Driver/tests/input/TestInputDriverFactory.cpp new file mode 100644 index 0000000..54f3042 --- /dev/null +++ b/FlippR-Driver/tests/input/TestInputDriverFactory.cpp @@ -0,0 +1,25 @@ +/* + * TestInputDriverFactory.cpp + * + * Created on: Jul 11, 2018 + * Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Oliver Martin, Dr. Franca Rupprecht + */ + +#include "catch.hpp" +#include "fakeit.hpp" + +#include "utilities/LoggerFactory.hpp" + + +// testing purposes +#define private public + +#include "input/EventNotifier.h" + +using namespace Input; +using namespace fakeit; + +SCENARIO("The factory creates a InputDriver") +{ + +}