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
TESTS/mocks/MockNerfusTicker.hpp
- Committer:
- Maxime Dupuis
- Date:
- 2017-03-27
- Revision:
- 29:049a2f46c738
- Child:
- 32:50b777bab5a4
File content as of revision 29:049a2f46c738:
#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