aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xmerl/test/xmerl_xsd_SUITE_data/po1.xml
diff options
context:
space:
mode:
authorLars Thorsen <[email protected]>2011-05-10 09:15:13 +0200
committerLars Thorsen <[email protected]>2011-05-10 09:15:13 +0200
commit6f7310e3a06af45f2635b0451874445b7f51b7ff (patch)
treece54006a66dd7f729bbb999b49d8fb8d0696bbec /lib/xmerl/test/xmerl_xsd_SUITE_data/po1.xml
parente3af9123e7ef9291535cafbd0ecb9d3309d674f7 (diff)
parentc241e8780088624f369379ba87215a475276b201 (diff)
downloadotp-6f7310e3a06af45f2635b0451874445b7f51b7ff.tar.gz
otp-6f7310e3a06af45f2635b0451874445b7f51b7ff.tar.bz2
otp-6f7310e3a06af45f2635b0451874445b7f51b7ff.zip
Merge branch 'lars/xmerl/test-suites/OTP-9228' into dev
* lars/xmerl/test-suites/OTP-9228: Fix separator error in tokenlists. Added the xmerl test suites. Using the same testdata for testing xmerl_scan and xmerl_sax_parser. Add test suite for xmerl xmerl: Add doc/examples directory
Diffstat (limited to 'lib/xmerl/test/xmerl_xsd_SUITE_data/po1.xml')
-rw-r--r--lib/xmerl/test/xmerl_xsd_SUITE_data/po1.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/xmerl/test/xmerl_xsd_SUITE_data/po1.xml b/lib/xmerl/test/xmerl_xsd_SUITE_data/po1.xml
new file mode 100644
index 0000000000..c77701b5a2
--- /dev/null
+++ b/lib/xmerl/test/xmerl_xsd_SUITE_data/po1.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0"?>
+<apo:purchaseOrder xmlns:apo="http://www.example.com/PO1"
+ orderDate="1999-10-20">
+ <shipTo country="US">
+ <name>Alice Smith</name>
+ <street>123 Maple Street</street>
+ <!-- etc. -->
+ <city>Mill Valley</city>
+ <state>CA</state>
+ <zip>90952</zip>
+ </shipTo>
+ <billTo country="US">
+ <name>Robert Smith</name>
+ <street>8 Oak Avenue</street>
+ <!-- etc. -->
+ <city>Old Town</city>
+ <state>PA</state>
+ <zip>95819</zip>
+ </billTo>
+ <apo:comment>Hurry, my lawn is going wild!</apo:comment>
+ <!-- etc. -->
+ <items>
+ <item partNum="872-AA">
+ <productName>Lawnmower</productName>
+ <quantity>1</quantity>
+ <USPrice>148.95</USPrice>
+ <comment>Confirm this is electric</comment>
+ </item>
+ <item partNum="926-AA">
+ <productName>Baby Monitor</productName>
+ <quantity>1</quantity>
+ <USPrice>39.98</USPrice>
+ <shipDate>1999-05-21</shipDate>
+ </item>
+ </items>
+</apo:purchaseOrder>