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
|
Testsuite: org.simpleframework.xml.core.PathSectionIndexTest
Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.125 sec
------------- Standard Output ---------------
<pathSectionIndexExample>
<contact-details>
<phone>
<mobile>67890</mobile>
</phone>
</contact-details>
<contact-details>
<phone>
<home>12345</home>
</phone>
</contact-details>
</pathSectionIndexExample><pathSectionIndexExample>
<contact-details>
<phone>
<mobile>67890</mobile>
</phone>
</contact-details>
<contact-details>
<phone>
<home>12345</home>
</phone>
</contact-details>
</pathSectionIndexExample>
<path-section-index-example ID="0">
<contact-details>
<phone>
<!-- java.lang.String -->
<mobile ID="1">67890</mobile>
</phone>
</contact-details>
<contact-details>
<phone>
<!-- java.lang.String -->
<home ID="2">12345</home>
</phone>
</contact-details>
</path-section-index-example>>>>>> ELEMENT=[element path-section-index-example]
>>>>> TYPE=[class org.simpleframework.xml.core.PathSectionIndexTest$PathSectionIndexExample]
>>>>> SOURCE=[class com.sun.xml.internal.stream.events.StartElementEvent]
<PathSectionIndexExample ID="0">
<ContactDetails>
<Phone>
<!-- java.lang.String -->
<Mobile ID="1">67890</Mobile>
</Phone>
</ContactDetails>
<ContactDetails>
<Phone>
<!-- java.lang.String -->
<Home ID="2">12345</Home>
</Phone>
</ContactDetails>
</PathSectionIndexExample>>>>>> ELEMENT=[element PathSectionIndexExample]
>>>>> TYPE=[class org.simpleframework.xml.core.PathSectionIndexTest$PathSectionIndexExample]
>>>>> SOURCE=[class com.sun.xml.internal.stream.events.StartElementEvent]
------------- ---------------- ---------------
------------- Standard Error -----------------
<pathSectionIndexExample>
<contact-details>
<phone>
<mobile>67890</mobile>
</phone>
</contact-details>
<contact-details>
<phone>
<home>12345</home>
</phone>
</contact-details>
</pathSectionIndexExample>------------- ---------------- ---------------
Testcase: testSectionIndex took 0.123 sec
Testcase: testDirectory took 0 sec
|