Skip to content

Instantly share code, notes, and snippets.

@irof
Created December 4, 2015 15:24
Show Gist options
  • Save irof/bd2327fb6dfeaa55fd3d to your computer and use it in GitHub Desktop.
Save irof/bd2327fb6dfeaa55fd3d to your computer and use it in GitHub Desktop.
def xml = new XmlParser().parseText("""<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="sample.HelloTest" tests="1" skipped="0" failures="0" errors="0" timestamp="2015-12-04T00:11:21" hostname="iProf.local" time="0.22">
<properties/>
<testcase name="test_sayHello" classname="sample.HelloTest" time="0.22"/>
<system-out><![CDATA[system-out-text]]></system-out>
<system-err><![CDATA[system-err-text]]></system-err>
</testsuite>""")
assert xml."system-out".text() == "system-out-text"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment