Edgewall Software

Changes between Version 1 and Version 2 of Boost Test


Ignore:
Timestamp:
Sep 29, 2006, 2:17:48 PM (18 years ago)
Author:
staffan
Comment:

typo+minor edits

Legend:

Unmodified
Added
Removed
Modified
  • Boost Test

    v1 v2  
    11= Using Boost.Test =
    22
    3 If you're developing with C++ [http://www.boost.org boost] is probably a familiar library. As it so happends, it's also a good match for being paired, quite easily, with bitten!
     3If you're developing with C++ [http://www.boost.org boost] is probably a familiar library. As it so happens, it's also a good match for being paired, quite easily, with bitten!
    44
    5 By digging around some (here: DataStorage) you can gather how bitten stores reports, and how `test` reports in particular are stored and used. For each test case a number of properties are stored, such as status and the fixture/test suite it belongs to.
     5By roaming around the wiki (here: DataStorage) you can gather how bitten stores reports, and how ''test'' reports in particular are stored and used. For each test case a number of properties are stored, such as status and the fixture/test suite it belongs to.
    66This data is few to bitten by the `<report>` recipe command (RecipeCommands). We just have to make sure it receives it in a format that it understands.
    77
     
    1616}}}
    1717
    18 The detailed report level is needed for the XSL transform provided in the next section. Furthermore, you have to somehow store this in a file, `test_results.xml` - there are several to do this, which I leave up to you to figure out (hint: redirect stderr/cerr or read the boost docs).
     18The detailed report level is needed for the XSL transform provided in the next section. Furthermore, you have to somehow store this in a file, ''test_results.xml'' below. There are several to do this, which I leave up to you to figure out (hint: redirect stderr/cerr or read the boost docs).
    1919
    2020== Making it bitten-friendly ==
     
    4848}}}
    4949
    50 Use the `<x:transform>` recipe command to do this. I'll give an example below.
     50Use the `<x:transform>` recipe command to do this. An example on how to use it is below. You will, of course, have to put this in your repository somewhere.
    5151
    5252== Cooking up your build recipe ==