Opened 8 years ago

Closed 8 years ago

Last modified 7 years ago

#10318 closed Bugs (fixed)

[Unit Test Framework] documentation minor error

Reported by: Reza Jahanbakhshi <reza.jahanbakhshi@…> 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 Raffi Enficiaud, 8 years ago

Owner: changed from Gennadiy Rozental to Raffi Enficiaud
Status: newassigned

comment:2 by Raffi Enficiaud, 8 years ago

Thanks, corrected in branch feature/quickbookdoc.

comment:3 by Raffi Enficiaud, 8 years ago

Resolution: fixed
Status: assignedclosed

comment:4 by Raffi Enficiaud, 7 years ago

Milestone: To Be DeterminedBoost 1.59.0
Note: See TracTickets for help on using tickets.