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

Committer:
Maxime Dupuis
Date:
2017-03-08
Revision:
21:a701f5a37a37

File content as of revision 21:a701f5a37a37:

#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