assertNotNull(component);
CountdownCallback count = new CountdownCallback(1);
component.setEventCallback(count);
Map<String, Object> props = new HashMap<String, Object>();
ScheduledDispatchJobConfig jobConfig = new ScheduledDispatchJobConfig();
jobConfig.setMuleContext(muleContext);
jobConfig.setEndpointRef("vm://quartz.in");
props.put(QuartzConnector.PROPERTY_JOB_CONFIG, jobConfig);
MuleClient client = muleContext.getClient();
client.dispatch("vm://quartz.scheduler1", NullPayload.getInstance(), props);
assertTrue(count.await(7000));