Created
January 13, 2011 08:29
-
-
Save weyert/777579 to your computer and use it in GitHub Desktop.
what's an easy way to prepare xml data for unit testing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var types: Array = [ "slide" ]; | |
| var myXML: XML = <schedules> | |
| <schedule> | |
| <item type="{types[0]}"><![CDATA[An example to be displayed.]]></item> | |
| </schedule> | |
| </schedules>; |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!