Chapter 8. Unit Testing API

8.1. C Unit Testing API

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

8.1.1. Pass Function

This prints a message for a successful test completion.

pass(msg);

8.1.2. Fail Function

This prints a message for an unsuccessful test completion.

fail(msg);

8.1.3. Untested Function

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

untested(msg);

8.1.4. Unresolved Function

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.

unresolved(msg);

8.1.5. Totals Function

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

totals();