| UnitTestsBeforeDatabaseTeardown | |
|---|---|
| Available fromversion 1.30.0 Called right before MediaWiki's test infrastructure begins tearing down tables for unit tests. | |
| Define function: | publicstaticfunctiononUnitTestsBeforeDatabaseTeardown(){...} |
| Attach hook: | Inextension.json:{"Hooks":{"UnitTestsBeforeDatabaseTeardown":"MediaWiki\\Extension\\MyExtension\\Hooks::onUnitTestsBeforeDatabaseTeardown"}} |
| Called from: | File(s):../tests/phpunit/MediaWikiIntegrationTestCase.php |
| Interface: | UnitTestsBeforeDatabaseTeardownHook.php |
For more information about attaching hooks, seeManual:Hooks.
For examples of extensions using this hook, seeCategory:UnitTestsBeforeDatabaseTeardown extensions.
Use this hook to clean up your test database after all tests are run from changes introduced e.g. viaUnitTestsAfterDatabaseSetup.