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

Committer:
Maxime Dupuis
Date:
2017-03-11
Revision:
25:0f2d698ecb3e

File content as of revision 25:0f2d698ecb3e:

#ifndef MOCK_DIGITAL_OUT_HPP
#define MOCK_DIGITAL_OUT_HPP

#include "DigitalOutInterface.hpp"

class MockDigitalOut : public DigitalOutInterface
{
    public:
        MOCK_METHOD1(write, void(int value));
};

#endif