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

TESTS/mocks/MockNerfusTicker.hpp

Committer:
Maxime Dupuis
Date:
2017-03-27
Revision:
32:50b777bab5a4
Parent:
29:049a2f46c738

File content as of revision 32:50b777bab5a4:

#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());
        MOCK_METHOD0(get_time_ms, int());
};

#endif