CCUnit project page | CCUnit home page |
Data Structures | |
struct | CCUnitTestListener |
A Listener for test progress. More... | |
struct | CCUnitTestResult |
Collects the results of a test case. More... | |
Typedefs | |
typedef CCUnitTestListener | CCUnitTestListener |
A Listener for test progress. | |
typedef CCUnitTestResult | CCUnitTestResult |
Collects the results of a test case. | |
Functions | |
CCUnitTestResult * | ccunit_newTestResult () |
Construct TestResult. | |
void | ccunit_deleteTestResult (CCUnitTestResult *result) |
Destruct TestResult. | |
void | ccunit_addFailure (CCUnitTestResult *result, struct CCUnitTestFailure *failure) |
Adds a failure to the list of failures. | |
void | ccunit_addResultListener (CCUnitTestResult *result, CCUnitTestListener *listener) |
Registers a TestRunner as TestListener. | |
CCUnitListIterator * | ccunit_failures (CCUnitTestResult *result) |
Returns an Iterator for the failures. | |
size_t | ccunit_failureCount (CCUnitTestResult *result) |
Gets the number of detected failures. | |
bool | ccunit_wasSuccessful (CCUnitTestResult *result) |
Returns whether the entire test was successful or not. | |
void | ccunit_stopTest (CCUnitTestResult *result) |
Marks that the test run should stop. | |
size_t | ccunit_runCount (CCUnitTestResult *result) |
Gets the number of run tests. |
|
A Listener for test progress. Implementing the Observer pattern a CCUnitTestListener may be registered to a CCUnitTestResult to obtain information on the testing progress. Use specialized sub classes of CCUnitTestListener for text output.
|
|
Collects the results of a test case. This module use a CCUnitTestListener to be informed of the ongoing tests.
|
|
Adds a failure to the list of failures. The passed in failed assertion caused the failure.
|
|
Registers a TestRunner as TestListener.
|
|
Destruct TestResult.
|
|
Gets the number of detected failures.
|
|
Returns an Iterator for the failures.
|
|
Construct TestResult.
|
|
Gets the number of run tests.
|
|
Marks that the test run should stop.
|
|
Returns whether the entire test was successful or not.
|
|
hosts this site. |
Send comments to: CCUnit Developer |