Result

Specifies location to record testcase results that are generated by the execution of testsuite and testscript tags.

Recording test results into other format is useful when you want to generate different reports of the same results. Also you'll find its easier to keep track of the history of running tests using this mechanism.

Children Tags
(){1,*}
Optional Attributes
uri
The output URI to use for the results types that may need to output to a file.
Usage Examples
Example #1
<result type="xml" uri="storage://OUTPUT/ut_results.xml">
   
<testsuite name="unittests">
      
<testscript uri="storage://INPUT/storage.xml" />
   
</testsuite>
</result>
Example #2
<result type="junit" uri="storage://OUTPUT/ut_results.xml">
   
<testsuite name="unittests">
      
<testscript uri="storage://INPUT/storage.xml" />
   
</testsuite>
</result>