| [ CCUnit project page ] | [ CCUnit home page ] |
テストの実行を追跡します。 [詳細]
データ構造 | |
| struct | CCUnitTestListener |
| A Listener for test progress. [詳細] | |
| struct | CCUnitTestResult |
| Collects the results of a test case. [詳細] | |
型定義 | |
| typedef struct CCUnitTestListener | CCUnitTestListener |
| A Listener for test progress. | |
| typedef struct CCUnitTestResult | CCUnitTestResult |
| Collects the results of a test case. | |
関数 | |
| 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. | |
テストの実行を追跡します。
| typedef struct CCUnitTestListener CCUnitTestListener |
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.
| typedef struct CCUnitTestResult CCUnitTestResult |
Collects the results of a test case.
This module use a CCUnitTestListener to be informed of the ongoing tests.
| void ccunit_addFailure | ( | CCUnitTestResult * | result, | |
| struct CCUnitTestFailure * | failure | |||
| ) |
| void ccunit_addResultListener | ( | CCUnitTestResult * | result, | |
| CCUnitTestListener * | listener | |||
| ) | [inline] |
Registers a TestRunner as TestListener.
| result | result object. | |
| listener | adding listener. |
参照元 doRun().
| void ccunit_deleteTestResult | ( | CCUnitTestResult * | result | ) |
Destruct TestResult.
| result | result object. |
| size_t ccunit_failureCount | ( | CCUnitTestResult * | result | ) | [inline] |
Gets the number of detected failures.
| result | result object. |
参照元 printFailures(), と printHeader().
| CCUnitListIterator * ccunit_failures | ( | CCUnitTestResult * | result | ) | [inline] |
| CCUnitTestResult * ccunit_newTestResult | ( | ) |
| size_t ccunit_runCount | ( | CCUnitTestResult * | result | ) | [inline] |
| void ccunit_stopTest | ( | CCUnitTestResult * | result | ) | [inline] |
Marks that the test run should stop.
| result | result object. |
| bool ccunit_wasSuccessful | ( | CCUnitTestResult * | result | ) | [inline] |
Returns whether the entire test was successful or not.
| result | result object. |
参照元 doRun(), と printHeader().
|
|
hosts this site. | Send comments to: CCUnit Developer |
Generated on Sun Aug 29 2010 10:59:35 for CCUnit by 1.7.1
|