From bf08ffe392144c0508e92f02edd2f8d5a6418cf9 Mon Sep 17 00:00:00 2001 From: verysecrethero Date: Mon, 14 Dec 2015 11:02:23 +0100 Subject: [PATCH] Added InputManagerTest --- src/Tests/InputManagerTest.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/Tests/InputManagerTest.cpp diff --git a/src/Tests/InputManagerTest.cpp b/src/Tests/InputManagerTest.cpp new file mode 100644 index 00000000..5b447c2b --- /dev/null +++ b/src/Tests/InputManagerTest.cpp @@ -0,0 +1,12 @@ +#include + +#include "Engine\Core\InputManager.h" + +BOOST_AUTO_TEST_SUITE(inputManagerTests) + +BOOST_AUTO_TEST_CASE(inputManagerTest) +{ + //already tested eventbroker so inputManager is indirectly already tested +} + +BOOST_AUTO_TEST_SUITE_END()