22#include <gmock/gmock.h> 
Interface class to use for callbacks.
Definition CallbackInterface.h:26
 
virtual void onInputAction(InputAction action)=0
Method to implement to respond to an input action.
 
virtual void updateScreen(uint8_t screenId, uint8_t row, const char *text)=0
Method to implement updating a screen.
 
Mock class to test callbacks.
Definition MockCallback.h:25
 
MOCK_METHOD(void, updateScreen,(uint8_t screenId, uint8_t row, const char *text),())
 
MOCK_METHOD(void, onInputAction,(InputAction action),())