NerfUS game coordinator for the Nerf gun firing range

Dependencies:   HardwareInterface mbed-rtos mbed

Fork of NerfUS by NerfUS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers MockRandomNumberGenerator.hpp Source File

MockRandomNumberGenerator.hpp

00001 #ifndef MOCK_RANDOM_NUMBER_GENERATOR_HPP
00002 #define MOCK_RANDOM_NUMBER_GENERATOR_HPP
00003 
00004 class MockRandomNumberGenerator : public RandomNumberGenerator
00005 {
00006     public:
00007         MOCK_METHOD2(get, int(int min, int max));
00008 };
00009 
00010 #endif