assertEquals("getComponentClassPath", new ClassPath(new String[] {"Engine1.jar"}), component.getComponentClassPath());
assertEquals("getBootstrapClassPath", new ClassPath(new String[] {"Engine2.jar"}), component.getBootstrapClassPath());
assertEquals("getDescription", "foo", component.getDescription());
assertArrayEquals("getSharedLibraries", new SharedLibraryList[] {new SharedLibraryList("slib1")}, component.getSharedLibraries());
Identification identification = component.getIdentification();
assertNotNull("identification is null", identification);
assertEquals("getName", "example-engine-1", identification.getName());
assertEquals("getDescription", "An example service engine", identification.getDescription());