| 233 | "bluetooth-magic-trackpad")); |
| 234 | |
| 235 | TEST_F(EvdevInputPlatform, register_ungrouped_devices) |
| 236 | { |
| 237 | auto platform = create_input_platform(); |
| 238 | EXPECT_CALL(mock_registry, add_device(_)).Times(2); |
| 239 | |
| 240 | platform->start(); |
| 241 | |
| 242 | udev.add_standard_device("synaptics-touchpad"); |
| 243 | udev.add_standard_device("usb-keyboard"); |
| 244 | run_dispatchable(*platform); |
| 245 | } |
| 246 | |
| 247 | TEST_F(EvdevInputPlatform, devices_from_same_group) |
| 248 | { |
nothing calls this directly
no test coverage detected