OCUnit Post-Processor
The OCUnit post-processor can be used to process the output generated by the OCUnit
test framework, adding the test results to the build result.
Attibutes
| Attribute |
Description |
Required? |
Default |
| name |
The name of the post-processor. |
Yes |
|
| suite |
If a suite is specified, all tests found by this processor will be added to that suite. |
No |
|
See also Test Post-Processors.
Child Elements
None.
Examples
Create and apply a OCUnit post-processor to a your xcodebuild output:
<ocunit.pp name="ocunit"/>
<recipe name="default">
<command name="build">
<xcodebuild>
<process processor="${ocunit}"/>
</xcodebuild>
</command>
</recipe>