< Extension:MWUnit < Hooks
MWUnitShouldSkipTest | |
---|---|
Available from version 2.0.0 called when determining whether a test case should be skipped |
|
Define function: | public static function onMWUnitShouldSkipTest( TestCase &$test_case, bool &$skip, bool &$message ) { ... }
|
Attach hook: | $wgHooks['MWUnitShouldSkipTest'][] = 'MyExtensionHooks::onMWUnitShouldSkipTest';
|
Called from: | File(s): MWUnit / src/Runner/BaseTestRunner.php Function(s): shouldSkipTest |
For more information about attaching hooks, see Manual:Hooks
For examples of other extensions using this hook, see Category:MWUnitShouldSkipTest extensions.
Details
- TestCase &$test_case: The TestCase object.
- bool &$skip: Whether or not to skip the test case.
- bool &$message: The message to show the user if the $skip is true.
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.