-----------------------------------------
| 104 | |
| 105 | //----------------------------------------- |
| 106 | int main(int /*argc*/, char */*argv*/[]) |
| 107 | { |
| 108 | sdbus::ServiceName const serviceName{"org.sdbuscpp.perftests"}; |
| 109 | auto connection = sdbus::createSystemBusConnection(serviceName); |
| 110 | |
| 111 | sdbus::ObjectPath objectPath{"/org/sdbuscpp/perftests"}; |
| 112 | PerftestAdaptor server(*connection, std::move(objectPath)); // NOLINT(misc-const-correctness) |
| 113 | |
| 114 | connection->enterEventLoop(); |
| 115 | } |
nothing calls this directly
no test coverage detected