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 NerfUS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers MockNerfusTicker.hpp Source File

MockNerfusTicker.hpp

00001 #ifndef MOCK_NERFUS_TICKER_HPP
00002 #define MOCK_NERFUS_TICKER_HPP
00003 
00004 #include "NerfusTickerInterface.hpp"
00005 
00006 class MockNerfusTicker : public NerfusTickerInterface
00007 {
00008     public:
00009         MOCK_METHOD1(start, void(int timeout_ms));
00010         MOCK_METHOD0(stop, void());
00011         MOCK_METHOD0(get_time_ms, int());
00012 };
00013 
00014 #endif
00015