| 161 | }; |
| 162 | |
| 163 | template<> void AConnectionNameRequest<Connection::default_bus_t>::setUpBusOpenExpectation() |
| 164 | { |
| 165 | EXPECT_CALL(*sdBusIntfMock_, sd_bus_open(_)).WillOnce(DoAll(SetArgPointee<0>(fakeBusPtr_), Return(1))); |
| 166 | } |
| 167 | template<> void AConnectionNameRequest<Connection::system_bus_t>::setUpBusOpenExpectation() |
| 168 | { |
| 169 | EXPECT_CALL(*sdBusIntfMock_, sd_bus_open_system(_)).WillOnce(DoAll(SetArgPointee<0>(fakeBusPtr_), Return(1))); |
nothing calls this directly
no outgoing calls
no test coverage detected