13 lines
268 B
C++
13 lines
268 B
C++
#include <boost/test/unit_test.hpp>
|
|
|
|
#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()
|