// lets force the JBI container to be constructed first
Descriptor root = (Descriptor) context.getBeansOfType(Descriptor.class).values().iterator().next();
assertNotNull("JBI Container not found in spring!", root);
SharedLibrary sl = root.getSharedLibrary();
Identification identification = sl.getIdentification();
assertEquals("getName", "TestSharedLibrary", identification.getName());
assertEquals("getDescription", "This is a test shared library.", identification.getDescription());
}