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 77 78
|
Testsuite: org.simpleframework.xml.core.NestedElementTest
Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.135 sec
------------- Standard Output ---------------
<nestedElementExample>
<contact-info>
<phone area-code="61">
<mobile>34512345</mobile>
<home>63356464</home>
</phone>
<address>
<city>London</city>
<street>Bevenden</street>
</address>
</contact-info>
</nestedElementExample>
<nestedElementExample>
<contact-info>
<phone area-code="61">
<mobile>34512345</mobile>
<home>63356464</home>
</phone>
<address>
<city>London</city>
<street>Bevenden</street>
</address>
</contact-info>
</nestedElementExample><nestedElementExample>
<contact-info>
<phone area-code="61">
<mobile>34512345</mobile>
<home>63356464</home>
</phone>
<address>
<city>London</city>
<street>Bevenden</street>
</address>
</contact-info>
</nestedElementExample>
<nested-element-example ID="0">
<contact-info>
<phone area-code="61">
<!-- java.lang.String -->
<mobile ID="1">34512345</mobile>
<!-- java.lang.String -->
<home ID="2">63356464</home>
</phone>
<address>
<!-- java.lang.String -->
<city ID="3">London</city>
<!-- java.lang.String -->
<street ID="4">Bevenden</street>
</address>
</contact-info>
</nested-element-example>>>>>> ELEMENT=[element nested-element-example]
>>>>> TYPE=[class org.simpleframework.xml.core.NestedElementTest$NestedElementExample]
>>>>> SOURCE=[class com.sun.xml.internal.stream.events.StartElementEvent]
<NestedElementExample ID="0">
<ContactInfo>
<Phone areaCode="61">
<!-- java.lang.String -->
<Mobile ID="1">34512345</Mobile>
<!-- java.lang.String -->
<Home ID="2">63356464</Home>
</Phone>
<Address>
<!-- java.lang.String -->
<City ID="3">London</City>
<!-- java.lang.String -->
<Street ID="4">Bevenden</Street>
</Address>
</ContactInfo>
</NestedElementExample>>>>>> ELEMENT=[element NestedElementExample]
>>>>> TYPE=[class org.simpleframework.xml.core.NestedElementTest$NestedElementExample]
>>>>> SOURCE=[class com.sun.xml.internal.stream.events.StartElementEvent]
------------- ---------------- ---------------
Testcase: testNestedExample took 0.134 sec
Testcase: testDirectory took 0 sec
|