test/doc
Raffi Enficiaud 567908006e files removed
2015-05-09 23:16:22 +02:00
..
adv_scenarios Doc: placeholder for custom test runners 2015-05-08 18:09:49 +02:00
closing_chapters Fix changelog 2015-05-04 01:07:05 +02:00
doxygen remove executable bit 2015-02-11 14:22:13 -05:00
examples files removed 2015-05-09 23:16:22 +02:00
html remove executable bit 2015-02-11 14:22:13 -05:00
prod_use Moving the new documentation to doc/ 2014-12-30 23:50:30 +01:00
runtime_configuration Merge branch 'develop' into local/new_filtering_merge 2015-03-25 22:19:11 +01:00
snippet Licenses 2015-02-03 02:14:06 +01:00
test_organization Doc: decorators and test case template 2015-05-04 23:44:28 +02:00
test_output Some typos 2015-02-03 02:46:52 +01:00
testing_tools Fix ref 2015-05-09 01:28:03 +02:00
tutorials links / warnings 2015-05-04 01:25:17 +02:00
adv_scenarios.qbk Doc: described custom entry points 2015-05-08 16:07:56 +02:00
examples.qbk new line EOF 2015-02-03 02:59:03 +01:00
introduction.qbk misleading sentence 2015-05-04 01:39:15 +02:00
Jamfile.v2 Adding some more files to doxygen 2015-05-08 23:50:04 +02:00
README.txt Updated README 2015-01-09 10:50:10 +01:00
test.qbk updated years 2015-04-29 22:14:33 +02:00
usage_recommandations.qbk Some cleanup over the snippet files 2015-02-03 02:10:30 +01:00
usage_variants.qbk subsection for building the UTF 2015-05-04 01:37:44 +02:00
users_guide.qbk Moving the new documentation to doc/ 2014-12-30 23:50:30 +01:00

This folder contains the documentation for the Boost.Test library. 
Any contribution or submission to the library should be accompanied by the corresponding documentation. 

The format of the documentation uses [http://www.boost.org/tools/quickbook/index.html Quickbook]. 

How to build the documentation
==============================


Install Doxygen
---------------
Part of the documentation needs [http://www.doxygen.org Doxygen]. Download and install it. `doxygen` should be accessible from the terminal.

Download Docbook
----------------
Quickbook needs docbook to be installed. Download and untar the docbook archives:

* Docbook XSL that can be found here: 
* Docbook XML that can be found here:

These two archives are supposed to be untarred to `$docbook_xsl_directory` and `$docbook_xml_directory` respectively. 


Download xsltproc
-----------------
This program is needed by docbook, in order to be able to transform XMLs into HTMLs.
`xsltproc` should be accessible from the command line. 


Construct bjam
--------------

Simply by typing in a terminal:
``
> cd $boost_root
> ./bootstrap.[sh|bat]

``

Build the documentation
-----------------------

``
> cd $boost_root/libs/test/doc
> ../../../b2 -sDOCBOOK_XSL_DIR=$docbook_xsl_directory -sDOCBOOK_DTD_DIR=$docbook_xml_directory
``


Recommendations
---------------

- Documentation is part of the "definition of done". A feature does not exist until it is implemented, tested, documented and reviewed. 
- It is highly recommended that each of your pull request comes with an updated documentation. Not doing so put this work on the shoulders
  of the maintainers and as a result, it would be likely that the pull request is not addressed in a timely manner.
- Please also update the changelog for referencing your contribution
- Every file should come with a copyright notice on the very beginning