Moved tests over from testsuite to beans

This commit is contained in:
Arjen Poutsma
2008-10-29 17:45:51 +00:00
parent 25031ce86b
commit 4efc95c825
5 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN"
"http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<beans>
<bean id="invalidClass" class="some.class.that.does.not.Exist"/>
<bean id="invalidMapDefinition" class="org.springframework.beans.TestBean">
<property name="someMap">
<map>
<entry/>
</map>
</property>
</bean>
<bean id="nestedBeanErrors" class="org.springframework.beans.TestBean">
<property name="spouse">
<bean class="org.springframework.beans.TestBean">
<property name="someMap">
<map>
<entry/>
</map>
</property>
</bean>
</property>
</bean>
<bean id="validBean" class="org.springframework.beans.TestBean"/>
</beans>