// assertEquals("We should not get the TextBytes for the added service:", 0, info.getTextBytes().length);
// assertEquals("We should not get the TextString for the added service:", null, info.getTextString());
// assertEquals("We should not get the Weight for the added service:", 0, info.getWeight());
// assertNotSame("We should not get the URL for the added service:", "", info.getURL());
registry.requestServiceInfo(service.getType(), service.getName());
assertTrue("We did not get the service resolved event.", capServiceResolvedEvent.hasCaptured());
verify(serviceListenerMock);
ServiceInfo resolvedInfo = capServiceResolvedEvent.getValue().getInfo();
assertEquals("Did not get the expected service info: ", service, resolvedInfo);