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/mocks/MockNerfusTicker.hpp
- Revision:
- 29:049a2f46c738
- Child:
- 32:50b777bab5a4
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TESTS/mocks/MockNerfusTicker.hpp Mon Mar 27 18:39:38 2017 -0400 @@ -0,0 +1,14 @@ +#ifndef MOCK_NERFUS_TICKER_HPP +#define MOCK_NERFUS_TICKER_HPP + +#include "NerfusTickerInterface.hpp" + +class MockNerfusTicker : public NerfusTickerInterface +{ + public: + MOCK_METHOD1(start, void(int timeout_ms)); + MOCK_METHOD0(stop, void()); +}; + +#endif +