MediaWiki
REL1_22
|
Interface to record parser test results. More...
Public Member Functions | |
end () | |
Called at the end of the parser test run. | |
record ($test, $result) | |
Called after each test. | |
report () | |
Called before finishing the test run. | |
start () | |
Called at beginning of the parser test run. |
Interface to record parser test results.
The ITestRecorder is a very simple interface to record the result of MediaWiki parser tests. One should call start() before running the full parser tests and end() once all the tests have been finished. After each test, you should use record() to keep track of your tests results. Finally, report() is used to generate a summary of your test run, one could dump it to the console for human consumption or register the result in a database for tracking purposes.
Definition at line 37 of file testHelpers.inc.
Called at the end of the parser test run.
Implemented in DbTestPreviewer, and TestRecorder.
ITestRecorder::record | ( | $ | test, |
$ | result | ||
) |
Called after each test.
Implemented in DbTestRecorder, DbTestPreviewer, and TestRecorder.
Called before finishing the test run.
Implemented in DbTestPreviewer, and TestRecorder.
Called at beginning of the parser test run.
Implemented in DbTestRecorder, DbTestPreviewer, and TestRecorder.