1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Testsuite: org.simpleframework.xml.core.CompositeMapTest
Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.049 sec
------------- Standard Output ---------------
<inlineString>
<entry key="b" value="2"/>
<entry key="a" value="1"/>
</inlineString><notInlineString>
<entry>
<key>b</key>
<value>2</value>
</entry>
<entry>
<key>a</key>
<value>1</value>
</entry>
</notInlineString><noAttributeString>
<entry>
<string>b</string>
<value>2</value>
</entry>
<entry>
<string>a</string>
<value>1</value>
</entry>
</noAttributeString><attributeNoKeyString>
<entry string="b" value="2"/>
<entry string="a" value="1"/>
</attributeNoKeyString>------------- ---------------- ---------------
Testcase: testInlineString took 0.028 sec
Testcase: testNotInlineString took 0.001 sec
Testcase: testNoAttributeString took 0.014 sec
Testcase: testAttributeNoKeyString took 0.003 sec
|