Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ant Wiki" for change notification.
The following page has been changed by SteveLoughran: http://wiki.apache.org/ant/Proposals/EnhancedTestReports The comment on the change is: -example from the bugrep ------------------------------------------------------------------------------ == Add support for artifacts == - * Formalise the the idea that every test run/test case can include artifacts off the results. + * Formalise the the idea that every test run/test case can include artifacts off the results. - * artifacts to include inline SVG content and linked images + * artifacts to include inline SVG content and linked images - * other artifacts would be specified by mime type, URL and description + * other artifacts would be specified by mime type, URL and description - * viewers/atom feeds could embed SVG content and images, other content would be turned into links. + * viewers/atom feeds could embed SVG content and images, other content would be turned into links. - * relative links are best for publishing reports that are HTML viewed + * relative links are best for publishing reports that are HTML viewed + = Examples = + + == example 1 == + {{{ + <testsuite total="1"> + <metadata> + <description>Tests of OS-specific things</description> + <xml> + <rdf xmlns:rdf="http://w3c.org/rdf"> + <!-- random triples here --> + </rdf> + </xml> + </metadata> + + <testcase name="testIgnorable"> + <metadata> + <description>A test that only works on Win98</description> + <links> + <uri>http://svn.example.org/ex/4</uri> + </links> + <tags><tag>win98</tag><tag>windows</tag><tag>trouble</tag></tags> + <issues> + <id>JIRA-117</id> + <id>JIRA-113</id> + </issues> + </metadata> + <skipped> + wrong OS + </skipped> + </testcase> + + <summary> + <total>1</total> + <skipped>1</skipped> + </summary> + + </testsuite> + }}} + --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]