aboutsummaryrefslogtreecommitdiff
path: root/tests/test_common/test_driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_common/test_driver.h')
-rw-r--r--tests/test_common/test_driver.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_common/test_driver.h b/tests/test_common/test_driver.h
index d5b831884..b1b95fbcc 100644
--- a/tests/test_common/test_driver.h
+++ b/tests/test_common/test_driver.h
@@ -20,6 +20,7 @@
20#include "gmock/gmock.h" 20#include "gmock/gmock.h"
21#include <stdint.h> 21#include <stdint.h>
22#include "host.h" 22#include "host.h"
23#include "keyboard_report_util.h"
23 24
24 25
25class TestDriver { 26class TestDriver {
@@ -27,8 +28,8 @@ public:
27 TestDriver(); 28 TestDriver();
28 ~TestDriver(); 29 ~TestDriver();
29 MOCK_METHOD0(keyboard_leds_mock, uint8_t ()); 30 MOCK_METHOD0(keyboard_leds_mock, uint8_t ());
30 MOCK_METHOD1(send_keyboard_mock, void (report_keyboard_t*)); 31 MOCK_METHOD1(send_keyboard_mock, void (report_keyboard_t&));
31 MOCK_METHOD1(send_mouse_mock, void (report_mouse_t*)); 32 MOCK_METHOD1(send_mouse_mock, void (report_mouse_t&));
32 MOCK_METHOD1(send_system_mock, void (uint16_t)); 33 MOCK_METHOD1(send_system_mock, void (uint16_t));
33 MOCK_METHOD1(send_consumer_mock, void (uint16_t)); 34 MOCK_METHOD1(send_consumer_mock, void (uint16_t));
34private: 35private: