| 465 | |
| 466 | template <typename ServerTraits, typename TemplateTraits> |
| 467 | void testBasicService() { |
| 468 | typedef ServiceState<ServerTraits, ParentServiceTraits<TemplateTraits> > State; |
| 469 | |
| 470 | // Start the server |
| 471 | std::shared_ptr<State> state(new State); |
| 472 | ServerThread serverThread(state, true); |
| 473 | |
| 474 | testParentService(state); |
| 475 | } |
| 476 | |
| 477 | template <typename ServerTraits, typename TemplateTraits> |
| 478 | void testInheritedService() { |
nothing calls this directly
no test coverage detected