NerfUS game coordinator for the Nerf gun firing range

Dependencies:   HardwareInterface mbed-rtos mbed

Fork of NerfUS by NerfUS

TESTS/MockRandomNumberGenerator.hpp

Committer:
Ismael Balafrej
Date:
2017-03-17
Branch:
PlayableGame
Revision:
17:48474266a361
Parent:
16:5e6c695468b6

File content as of revision 17:48474266a361:

#ifndef MOCK_RANDOM_NUMBER_GENERATOR_HPP
#define MOCK_RANDOM_NUMBER_GENERATOR_HPP

class MockRandomNumberGenerator : public RandomNumberGenerator
{
    public:
        MOCK_METHOD2(get, int(int min, int max));
};

#endif