7.2. C++ Unit Testing API

All of the methods that take a msg parameter use a C char * or STL string, that is the message to be dislayed. There currently is no support for variable length arguments.

7.2.1. Pass Method

This prints a message for a successful test completion.

TestState::pass(msg);

7.2.2. Fail Method

This prints a message for an unsuccessful test completion.

TestState::fail(msg);

7.2.3. Untested Method

This prints a message for an test case that isn't run for some technical reason.

TestState::untested(msg);

7.2.4. Unresolved Method

This prints a message for an test case that is run, but there is no clear result. These output states require a human to look over the results to determine what happened.

TestState::unresolved(msg);

7.2.5. Totals Method

This prints out the total numbers of all the test state outputs.

TestState::totals();