CCUnit project page | CCUnit home page |
Typedefs | |
typedef CCUnitTestRunner | CCUnitTestRunner |
A command line based tool to run tests. | |
Functions | |
CCUnitTestResult * | ccunit_runTestFixture (CCUnitTestFixture *f) |
run test cases and collect its results. | |
CCUnitTestRunner * | ccunit_newTestRunner (FILE *output) |
constructor. | |
void | ccunit_deleteTestRunner (CCUnitTestRunner *runner) |
destructor. | |
int | ccunit_runTestRunner (CCUnitTestRunner *runner, CCUnitTestSuite *suite) |
Runs test suite. | |
CCUnitTestResult * | ccunit_runTestSuite (CCUnitTestSuite *suite, CCUnitTestResult *result) |
run test suite and collect its results. |
|
A command line based tool to run tests. Runs a single test and collects its results. This method can be used to start a test run from your program. int main (int ac, char** av) { CCUnitTestRunner* runner = ccunit_newTestRunner (NULL); CCUnitTestSuite* suite = <var>CREATE_TESTSUITE</var> (); return runner->run (runner, suite); }
|
|
destructor.
|
|
constructor.
|
|
run test cases and collect its results.
|
|
Runs test suite.
|
|
run test suite and collect its results.
|
|
hosts this site. |
Send comments to: CCUnit Developer |