public void testTry() {
ServiceReference ref = ipojoHelper.getServiceReferenceByName(FooService.class.getName(), ci_lazzy.getInstanceName());
assertNotNull("Check that a FooService from " + ci_lazzy.getInstanceName() + " is available", ref);
FooProviderType1 fs = (FooProviderType1) osgiHelper.getServiceObject(ref);
try {
fs.testTry();
} catch (Exception e) {
fail("The method has returned an exception");
}
}