*/
public void testGetWithName() {
// 1. A service interface having 2 implementation and one of them
// registered with a name, while the other has no name but marked as
// Primary
NamedService ns = s.get(NamedService.class, "IGOTTANAME");
assertNotNull(ns);
assertTrue("Expected: NamedServiceImpl2 for service interface: NamedService but got: "
+ ns.getClass().getSimpleName() + ".", ns instanceof NamedServiceImpl2);
// 2. Negative case:Make sure names are case sensitive
assertNull(s.get(NamedService.class, "igoTTaName"));
// 3. Asking for a service interface which has not been registered with