37 lines
875 B
XML
37 lines
875 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testdata>
|
|
<!-- Numeric values -->
|
|
<item>
|
|
<id>1</id>
|
|
<value>100</value>
|
|
<price>24.99</price>
|
|
<quantity>5</quantity>
|
|
</item>
|
|
|
|
<!-- Text values -->
|
|
<item>
|
|
<id>2</id>
|
|
<name>Test Product</name>
|
|
<description>This is a test product description</description>
|
|
<category>Test</category>
|
|
</item>
|
|
|
|
<!-- Mixed content -->
|
|
<item>
|
|
<id>3</id>
|
|
<name>Mixed Product</name>
|
|
<price>19.99</price>
|
|
<code>PRD-123</code>
|
|
<tags>sale,discount,new</tags>
|
|
</item>
|
|
|
|
<!-- Empty and special values -->
|
|
<item>
|
|
<id>4</id>
|
|
<value></value>
|
|
<specialChars>Hello & World < > " '</specialChars>
|
|
<multiline>Line 1
|
|
Line 2
|
|
Line 3</multiline>
|
|
</item>
|
|
</testdata> |