Multiple test sets for a single test
Status: Beta
Brought to you by:
tvelkoff
I would like to be able to define multiple test sets for a single test method. Currently this doesn't seem to be possible. A possible solution would be as follows:
<bean id="..." class="org.springunit.framework.SpringUnitContext">
<property name="data">
<map>
<!-- Test data values go here -->
<entry key="...">
<!-- Containing list of test sets --->
<list>
<map>
<!-- Containing test objects/arguments -->
</map>
</list>
</entry>
...
</map>
</bean>
</beans>