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

Committer:
Maxime Dupuis
Date:
2017-03-11
Revision:
26:328f659fc1b3
Parent:
TESTS/MockLedController.hpp@ 18:353fb432c03c

File content as of revision 26:328f659fc1b3:

#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