@Test
public void testReadComplete() throws Exception {
SwitchYardModel switchyard = _puller.pull(COMPLETE_XML, getClass());
CompositeModel composite = switchyard.getComposite();
ComponentModel component = composite.getComponents().get(0);
ComponentImplementationModel implementation = component.getImplementation();
Assert.assertTrue(implementation instanceof BeanComponentImplementationModel);
BeanComponentImplementationModel bci = (BeanComponentImplementationModel)implementation;
Assert.assertEquals("bean", bci.getType());
Assert.assertEquals("org.switchyard.example.m1app.SimpleBean", bci.getClazz());
Configuration config = bci.getModelConfiguration();