| 167 | } |
| 168 | |
| 169 | TEST_P(EvdevInputPlatform, scans_on_start) |
| 170 | { |
| 171 | udev.add_standard_device(GetParam()); |
| 172 | |
| 173 | using namespace ::testing; |
| 174 | auto platform = create_input_platform(); |
| 175 | |
| 176 | EXPECT_CALL(mock_registry, add_device(_)); |
| 177 | |
| 178 | platform->start(); |
| 179 | run_dispatchable(*platform); |
| 180 | } |
| 181 | |
| 182 | TEST_P(EvdevInputPlatform, detects_on_hotplug) |
| 183 | { |
nothing calls this directly
no test coverage detected