| 476 | |
| 477 | template <typename ServerTraits, typename TemplateTraits> |
| 478 | void testInheritedService() { |
| 479 | typedef ServiceState<ServerTraits, ChildServiceTraits<TemplateTraits> > State; |
| 480 | |
| 481 | // Start the server |
| 482 | std::shared_ptr<State> state(new State); |
| 483 | ServerThread serverThread(state, true); |
| 484 | |
| 485 | testParentService(state); |
| 486 | testChildService(state); |
| 487 | } |
| 488 | |
| 489 | /** |
| 490 | * Test to make sure that the TServerEventHandler and TProcessorEventHandler |
nothing calls this directly
no test coverage detected