The xunit accessor runs a unit test list with the NetKernel Unit Test framework.
The unit test engine will execute the tests specified by testlist
argument. It will then
perform optional assertions on the results. The results of the tests can be returned in either
XHTML or XML format using the @output attribute on the testlist - default is XML which is required for dynamic
integration in the control panel test framework.
A guide to using the unit test framework is available here
.
TestList Format
A test list has the following form...
<testlist output="xml" title="XUnit Self Tests">
<!---->
<desc />
<!---->
<test>
<uri>active:dpml+operand@ffcpl:/mytest.idoc</uri>
<assert>
...Optional assertions on the results...
</assert>
</test>
...
<group title="A Test Group">
<uri>ffcpl:/mytestsuite.xml</uri>
</group>
...
</testlist>