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/MockLedController.hpp

Committer:
Maxime Dupuis
Date:
2017-03-08
Revision:
18:353fb432c03c

File content as of revision 18:353fb432c03c:

#ifndef MOCK_LED_CONTROLLER_HPP
#define MOCK_LED_CONTROLLER_HPP

#include "LedControllerInterface.hpp"

class MockLedController : public LedControllerInterface
{
    public:
        MOCK_METHOD0(turn_on, void());
        MOCK_METHOD0(turn_off, void());
};

#endif