Skip to content

Instantly share code, notes, and snippets.

@fganora
Last active May 15, 2020 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fganora/ecd5508afc824f81cb932de8ddc1bace to your computer and use it in GitHub Desktop.
Save fganora/ecd5508afc824f81cb932de8ddc1bace to your computer and use it in GitHub Desktop.
Test XML document for Mule DataWeave testing (World Cities)
<?xml version="1.0" encoding="UTF-8"?>
<fg:Countries xmlns:fg="http://examples.fganora.com">
<fg:Country>
<fg:Name>Netherlands</fg:Name>
<fg:Continent>Europe</fg:Continent>
<fg:Cities>
<fg:City capital="YES">
<fg:Name>Amsterdam</fg:Name>
<fg:Population>0.821</fg:Population>
</fg:City>
<fg:City>
<fg:Name>Eindhoven</fg:Name>
<fg:Population>0.223</fg:Population>
</fg:City>
<fg:City>
<fg:Name>Rotterdam</fg:Name>
<fg:Population>0.623</fg:Population>
</fg:City>
</fg:Cities>
</fg:Country>
<fg:Country>
<fg:Name>United Kingdom</fg:Name>
<fg:Continent>Europe</fg:Continent>
<fg:Cities>
<fg:City capital="YES">
<fg:Name>London</fg:Name>
<fg:Population>8.982</fg:Population>
</fg:City>
<fg:City>
<fg:Name>Manchester</fg:Name>
<fg:Population>0.510</fg:Population>
</fg:City>
<fg:City>
<fg:Name>Cardiff</fg:Name>
<fg:Population>0.335</fg:Population>
</fg:City>
<fg:City>
<fg:Name>Glasgow</fg:Name>
<fg:Population>0.598</fg:Population>
</fg:City>
</fg:Cities>
</fg:Country>
<fg:Country>
<fg:Name>USA</fg:Name>
<fg:Continent>North America</fg:Continent>
<fg:Cities>
<fg:City>
<fg:Name>New York</fg:Name>
<fg:Population>8.399</fg:Population>
</fg:City>
<fg:City>
<fg:Name>Chicago</fg:Name>
<fg:Population>2.705</fg:Population>
</fg:City>
<fg:City capital="YES">
<fg:Name>Washington</fg:Name>
<fg:Population>0.702</fg:Population>
</fg:City>
<fg:City>
<fg:Name>Los Angeles</fg:Name>
<fg:Population>4.057</fg:Population>
</fg:City>
<fg:City>
<fg:Name>Houston</fg:Name>
<fg:Population>2.325</fg:Population>
</fg:City>
</fg:Cities>
</fg:Country>
<fg:Country>
<fg:Name>India</fg:Name>
<fg:Continent>Asia</fg:Continent>
<fg:Cities>
<fg:City>
<fg:Name>Mumbai</fg:Name>
<fg:Population>18.410</fg:Population>
</fg:City>
<fg:City capital="YES">
<fg:Name>Delhi</fg:Name>
<fg:Population>11.034</fg:Population>
</fg:City>
<fg:City>
<fg:Name>Chennai</fg:Name>
<fg:Population>7.088</fg:Population>
</fg:City>
<fg:City>
<fg:Name>Bangalore</fg:Name>
<fg:Population>8.443</fg:Population>
</fg:City>
</fg:Cities>
</fg:Country>
<fg:Country>
<fg:Name>China</fg:Name>
<fg:Continent>Asia</fg:Continent>
<fg:Cities>
<fg:City>
<fg:Name>Guangzhou</fg:Name>
<fg:Population>14.904</fg:Population>
</fg:City>
<fg:City>
<fg:Name>Shanghai</fg:Name>
<fg:Population>24.281</fg:Population>
</fg:City>
<fg:City capital="YES">
<fg:Name>Beijing</fg:Name>
<fg:Population>21.542</fg:Population>
</fg:City>
</fg:Cities>
</fg:Country>
</fg:Countries>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment