assertNotNull(service);
InboundEndpoint ep = ((ServiceCompositeMessageSource) service.getMessageSource()).getEndpoint("qEP5");
assertNotNull(ep.getProperty("jobConfig"));
assertTrue(ep.getProperty("jobConfig") instanceof EndpointPollingJobConfig);
EndpointPollingJobConfig config = (EndpointPollingJobConfig)ep.getProperty("jobConfig");
assertEquals(EndpointPollingJob.class, config.getJobClass());
assertEquals("file:///N/drop-data/in", config.getEndpointRef());
assertEquals(4000, config.getTimeout());
}