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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
Testsuite: org.simpleframework.xml.util.DictionaryTest
Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.118 sec
------------- Standard Output ---------------
<test name="example">
<list>
<property name="3">
<text>three</text>
</property>
<property name="2">
<text>two</text>
</property>
<property name="1">
<text>one</text>
</property>
</list>
</test><test name="example">
<list>
<property name="3">
<text>three</text>
</property>
<property name="2">
<text>two</text>
</property>
<property name="1">
<text>one</text>
</property>
</list>
</test>
<test ID="0" name="example">
<!-- org.simpleframework.xml.util.Dictionary -->
<list ID="1">
<!-- org.simpleframework.xml.util.DictionaryTest$Property -->
<property ID="2" name="3">
<!-- java.lang.String -->
<text ID="3">three</text>
</property>
<!-- org.simpleframework.xml.util.DictionaryTest$Property -->
<property ID="4" name="2">
<!-- java.lang.String -->
<text ID="5">two</text>
</property>
<!-- org.simpleframework.xml.util.DictionaryTest$Property -->
<property ID="6" name="1">
<!-- java.lang.String -->
<text ID="7">one</text>
</property>
</list>
</test>>>>>> ELEMENT=[element test]
>>>>> TYPE=[class org.simpleframework.xml.util.DictionaryTest$PropertySet]
>>>>> SOURCE=[class com.sun.xml.internal.stream.events.StartElementEvent]
<Test ID="0" name="example">
<!-- org.simpleframework.xml.util.Dictionary -->
<List ID="1">
<!-- org.simpleframework.xml.util.DictionaryTest$Property -->
<Property ID="2" name="3">
<!-- java.lang.String -->
<Text ID="3">three</Text>
</Property>
<!-- org.simpleframework.xml.util.DictionaryTest$Property -->
<Property ID="4" name="2">
<!-- java.lang.String -->
<Text ID="5">two</Text>
</Property>
<!-- org.simpleframework.xml.util.DictionaryTest$Property -->
<Property ID="6" name="1">
<!-- java.lang.String -->
<Text ID="7">one</Text>
</Property>
</List>
</Test>>>>>> ELEMENT=[element Test]
>>>>> TYPE=[class org.simpleframework.xml.util.DictionaryTest$PropertySet]
>>>>> SOURCE=[class com.sun.xml.internal.stream.events.StartElementEvent]
------------- ---------------- ---------------
Testcase: testDictionary took 0.115 sec
Testcase: testDirectory took 0 sec
|