#10318 closed Bugs (fixed)
[Unit Test Framework] documentation minor error
Reported by: | Owned by: | Raffi Enficiaud | |
---|---|---|---|
Milestone: | Boost 1.59.0 | Component: | test |
Version: | Boost 1.55.0 | Severity: | Cosmetic |
Keywords: | Cc: |
Description
Hi,
In "Unit Test Framework > Tutorials > Boost.Test driven development" documentation, 5th test is
const_string cs3( cs1 );
BOOST_CHECK_EQUAL( std::strcmp( cs1.data(), "test_string" ), 0 );
Which I think it should be
const_string cs3( cs1 );
BOOST_CHECK_EQUAL( std::strcmp( cs3.data(), "test_string" ), 0 );
Notice cs1 is changed to cs3
Here is the link to documentation page: http://www.boost.org/doc/libs/1_55_0/libs/test/doc/html/tutorials/new-year-resolution.html
Change History (4)
comment:1 by , 8 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 8 years ago
comment:3 by , 8 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:4 by , 7 years ago
Milestone: | To Be Determined → Boost 1.59.0 |
---|
Note:
See TracTickets
for help on using tickets.
Thanks, corrected in branch feature/quickbookdoc.