NerfUS mobile node that manages a target for the Nerf gun firing range
Dependencies: LedController mbed-rtos mbed NerfUSXbee Servomotor TargetManager
Fork of NerfUS by
Diff: TESTS/TargetManagerTest.cpp
- Revision:
- 28:8fc53a870691
- Child:
- 30:412a779cf607
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TESTS/TargetManagerTest.cpp Mon Mar 27 18:34:07 2017 -0400 @@ -0,0 +1,21 @@ +#include "gmock/gmock.h" +#include "gtest/gtest.h" + +#include "mocks/MockTarget.hpp" +#include "TargetManager.hpp" + +class TargetManagerTest : public ::testing::Test +{ + public: + TargetManagerTest() + { + } + + TargetManager target_manager; +}; + +TEST_F(TargetManagerTest, LibraryBuilds) +{ + +} +