Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: LedController mbed-rtos mbed NerfUSXbee Servomotor TargetManager
Fork of NerfUS by
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
