Edgewall Software

Changes between Version 9 and Version 10 of Recipe Commands


Ignore:
Timestamp:
Sep 29, 2006, 12:15:48 AM (18 years ago)
Author:
staffan
Comment:

Added cppunit documentation

Legend:

Unmodified
Added
Removed
Modified
  • Recipe Commands

    v9 v10  
    125125Runs the target “compile” of the `Makefile` located in the sub-directory `build`.
    126126
     127
     128=== `<c:cppunit>` ===
     129
     130Report the test output generated by the [http://cppunit.sourceforge.net cppunit] unit testing framework. The output from cppunit must be in XML format and in already, specified by the `file` argument of this recipe.
     131
     132==== Parameters ====
     133
     134|| Name || Description ||
     135|| `file` || Path to the cppunit XML output file. ||
     136
     137==== Examples ====
     138
     139{{{
     140 <sh:exec executable="run_unit_tests" output="test_results.xml" />
     141 <c:cppunit file="test_results.xml" />
     142}}}
     143
     144Runs the program `run_unit_tests` to gather the data output by cppunit in the `test_results.xml` file and then reports it.
     145
    127146----
    128147