}
@Test
public void testCreateDispatcher() throws Exception {
// verify that dispatchers can be created for an InOnly service
ServiceReference inOnly = new ServiceReferenceImpl(
new QName("inOnly"), new InOnlyService(), _domain, null);
assertNotNull(_provider.createDispatcher(inOnly));
// verify that dispatchers can be created for an InOut service
ServiceReference inOut = new ServiceReferenceImpl(
new QName("inOut"), new InOutService(), _domain, null);
assertNotNull(_provider.createDispatcher(inOut));
}