1b5645947SKrzysztof Grobelny #pragma once
2b5645947SKrzysztof Grobelny 
3b5645947SKrzysztof Grobelny #include "interfaces/sensor_listener.hpp"
4b5645947SKrzysztof Grobelny 
5b5645947SKrzysztof Grobelny #include <gmock/gmock.h>
6b5645947SKrzysztof Grobelny 
7b5645947SKrzysztof Grobelny class SensorListenerMock : public interfaces::SensorListener
8b5645947SKrzysztof Grobelny {
9b5645947SKrzysztof Grobelny   public:
10*51f0fd50SKrzysztof Grobelny     MOCK_METHOD(void, sensorUpdated,
11*51f0fd50SKrzysztof Grobelny                 (interfaces::Sensor&, Milliseconds, double), (override));
12b5645947SKrzysztof Grobelny };
13