MuleContext context = new DefaultMuleContextFactory().createMuleContext();
SpringXmlConfigurationBuilder builder = new SpringXmlConfigurationBuilder("application-context.xml, mule-config.xml");
builder.configure(context);
context.start();
Object orange = context.getRegistry().lookupObject("orange");
assertNotNull(orange);
assertTrue(orange instanceof Orange);
assertEquals("Pirulo", ((Orange) orange).getBrand());