public void testDynamicPropertiesWithExecutorService() throws Exception {
DynamicPropertiesFactoryBean factoryBean = new DynamicPropertiesFactoryBean();
factoryBean.setLocation(new ClassPathResource("reload/reloadable.properties"));
DynamicPropertySource source = new DynamicPropertySource();
source.setExecutorService(Executors.newScheduledThreadPool(2));
doTest(factoryBean, source);
}