ExtensionPointRegistry registry = new DefaultExtensionPointRegistry();
Iterator<ServiceDeclaration> iterator = sds.iterator();
Test2Impl implA = ServiceHelper.newInstance(registry, iterator.next());
Assert.assertSame(registry, implA.getRegistry());
TestImpl impl1 = ServiceHelper.newInstance(registry, iterator.next());
Assert.assertNotNull(impl1);
}