File: TEST-org.simpleframework.xml.core.CompositeMapTest.txt

package info (click to toggle)
simple-xml 2.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 8,444 kB
  • ctags: 10,002
  • sloc: java: 45,332; xml: 228; makefile: 13; sh: 11
file content (33 lines) | stat: -rw-r--r-- 947 bytes parent folder | download | duplicates (3)
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