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

Committer:
Maxime Dupuis
Date:
2017-03-11
Revision:
26:328f659fc1b3
Parent:
TESTS/MockXbeeTransmitter.hpp@ 21:a701f5a37a37
Child:
28:8fc53a870691

File content as of revision 26:328f659fc1b3:

#ifndef MOCK_XBEE_TRANSMITTER_HPP
#define MOCK_XBEE_TRANSMITTER_HPP

#include "XbeeTransmitter.hpp"

class MockXbeeTransmitter : public XbeeTransmitter
{
    public:
        MOCK_METHOD1(transmit,  void(const std::vector<uint8_t>& bytes));
};

#endif