| 21 | #define integration_config(device) static_cast<const IntegrationDriverConfig*>(device->config) |
| 22 | |
| 23 | static int start(Device* device) { |
| 24 | startCalled++; |
| 25 | return integration_config(device)->startResult; |
| 26 | } |
| 27 | |
| 28 | static int stop(Device* device) { |
| 29 | stopCalled++; |
no outgoing calls
no test coverage detected