MuleClient mc = new MuleClient(muleContext);
mc.dispatch("vm://in5", "test", null);
assertExceptionMessage(mc.request("vm://out5", FunctionalTestCase.RECEIVE_TIMEOUT));
Prober prober = new PollingProber(5000, 100);
prober.check(new Probe()
{
public boolean isSatisfied()
{
return !service.isStarted();
}