@Test
public void testVersionLookup() throws Exception
{
Imported<PublishedService> exportedInstance = registry.getServices(PublishedService.class);
Assert.assertNotNull(exportedInstance);
PublishedService publishedService = exportedInstance.get();
Assert.assertNotNull(publishedService);
String message = publishedService.getMessage();
Assert.assertEquals("I am PublishedService.", message);
int count = 0;
for (Addon addon : registry.getAddons(AddonFilters.allStarted()))
{