Added tests for the 'scheduler' element parsing within the 'task' namespace.

This commit is contained in:
Mark Fisher
2009-06-01 21:16:11 +00:00
parent 01ae825334
commit b9a3065c0c
2 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task.xsd">
<task:scheduler id="defaultScheduler"/>
<task:scheduler id="customScheduler" size="42"/>
</beans>