public void startOnStarted() throws Exception
{
MuleContext ctx = ctxBuilder.buildMuleContext();
ctx.initialise();
new DefaultsConfigurationBuilder().configure(ctx);
NotificationListener listener = new NotificationListener();
ctx.registerListener(listener);
ctx.start();
assertTrue("CONTEXT_STARTING notification never fired", listener.startingNotificationFired);