<?xml version="1.0" ?> <ddtunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ddtunit.sourceforge.net/ddtunit.xsd"> <cluster id="RealVOGeneratorTest"> <group id="testGenerateComplexVO"> <test id="Use default constructor"> <objs> <obj id="objectText" type="String">Text for Hallo</obj> <obj id="objectSimpleVO" type="junitx.ddtunit.resources.SimpleVO"> <stringValue>Hallo</stringValue> <integerValue>4711</integerValue> <doubleValue>47.11</doubleValue> </obj> </objs> <asserts> <assert id="expectedComplexVO" type="junitx.ddtunit.resources.ComplexVO" action="isEqual"> <obj id="simpleVO" type="junitx.ddtunit.resources.SimpleVO" hint="fields"> <stringValue>Hallo</stringValue> <integerValue>4711</integerValue> <doubleValue>47.11</doubleValue> </obj> <text id="text" type="String">Text for Hallo</text> </assert> </asserts> </test> <test id="Use constructor"> <objs> <obj id="objectText" type="String">Text for Hallo again</obj> <obj id="objectSimpleVO" type="junitx.ddtunit.resources.SimpleVO" hint="call"> <item type="string">Hallo again</item> <item type="int">5812</item> <item type="double">58.12</item> </obj> </objs> <asserts> <assert id="expectedComplexVO" type="junitx.ddtunit.resources.ComplexVO" action="isEqual"> <obj id="simpleVO" type="junitx.ddtunit.resources.SimpleVO" hint="call"> <item type="string">Hallo again</item> <item type="int">5812</item> <item type="double">58.12</item> </obj> <text id="text" type="String">Text for Hallo again</text> </assert> </asserts> </test> </group> </cluster> </ddtunit>