unit_test_result: is it deprecated?

Is the class unit_test_result deprecated? I have boost 1.33.1 installed and it is not a part of the installation. Is there something else I am suppose to be using? Stephen

"Stephen Torri"
Is the class unit_test_result deprecated? I have boost 1.33.1 installed
Yes.
and it is not a part of the installation. Is there something else I am suppose to be using?
Stephen
What exactly you want to do? Gennadiy

On Fri, 2006-11-03 at 10:04 -0500, Gennadiy Rozental wrote:
"Stephen Torri"
wrote in message news:1162552553.22893.1.camel@base.torri.org... Is the class unit_test_result deprecated? I have boost 1.33.1 installed
Yes.
and it is not a part of the installation. Is there something else I am suppose to be using?
Stephen
What exactly you want to do?
I would like to print out whether a test failed or succeeded. I think that a failure message appears by default but not success. Stephen

"Stephen Torri"
On Fri, 2006-11-03 at 10:04 -0500, Gennadiy Rozental wrote:
"Stephen Torri"
wrote in message news:1162552553.22893.1.camel@base.torri.org... Is the class unit_test_result deprecated? I have boost 1.33.1 installed
Yes.
and it is not a part of the installation. Is there something else I am suppose to be using?
Stephen
What exactly you want to do?
I would like to print out whether a test failed or succeeded. I think that a failure message appears by default but not success.
Doesn't "No errors detected" message appear? What component are you using?

On Sun, 2006-11-05 at 00:02 -0500, Gennadiy Rozental wrote:
What exactly you want to do?
I would like to print out whether a test failed or succeeded. I think that a failure message appears by default but not success.
Doesn't "No errors detected" message appear? What component are you using?
The message "No errors detected" does appear. In my library I print out debugging messages. It would be nice to build the test with verbose printing so that I can see something like: Running test #1 [SUCCESS] Running test #2 <Debug messages> <Exception message> Stephen

"Stephen Torri"
On Sun, 2006-11-05 at 00:02 -0500, Gennadiy Rozental wrote:
What exactly you want to do?
I would like to print out whether a test failed or succeeded. I think that a failure message appears by default but not success.
Doesn't "No errors detected" message appear? What component are you using?
The message "No errors detected" does appear. In my library I print out debugging messages. It would be nice to build the test with verbose printing so that I can see something like:
Running test #1 [SUCCESS] Running test #2 <Debug messages> <Exception message>
Stephen
Using boost:1.33.1: You could customize report formatter. Report formatter is an instance of a class derived from boost::unit_test::results_reporter::format. To modify report formatter use boost::unit_test::results_reporter::set_format( boost::unit_test::results_reporter::format* ). Boost.Test is responsible for memory management. Also you could use provided XML report format and apply any kind of XML processing facility to produce desired output. Gennadiy
participants (2)
-
Gennadiy Rozental
-
Stephen Torri