wiki.techinc.nl/tests/phpunit
2022-07-20 15:53:59 +00:00
..
data SVG Language selector should default to page language 2022-06-13 21:17:25 +00:00
docs
includes Merge "EditPage: Disentangle edit summary and section title" 2022-07-19 21:14:32 +00:00
integration/includes Merge "HTMLUserTextField: Fix validation" 2022-07-20 15:53:59 +00:00
languages Tests: Use createNoOpMock() shortcut in a few more places 2022-07-18 21:25:31 +00:00
maintenance Maintenance: allow legacy mOptions field to be manipulated. 2022-07-19 15:37:39 +02:00
mocks Add support for nested property schemas in MainConfigSchema. 2022-06-29 16:34:43 +10:00
structure Fix type declarations in MainConfigSchema 2022-07-15 16:11:50 +02:00
suites Clean up line indent with mixed tabs and whitespaces 2022-07-09 22:21:53 +02:00
tests Replace trivial usa of mock builder with createMock() shortcut 2022-07-15 16:43:48 +00:00
unit Merge "EditPage: Disentangle edit summary and section title" 2022-07-19 21:14:32 +00:00
bootstrap.maintenance.php Revert "phpunit: Default to vendor/bin/phpunit, remove suites.xml" 2022-06-09 14:15:54 +00:00
bootstrap.php Collect autoloader info in ExtensionProcessor 2022-06-07 17:39:00 +02:00
HamcrestPHPUnitIntegration.php Update Legoktm's email address 2021-05-02 05:39:37 +00:00
LessFileCompilationTest.php tests: Fix types in documentation by adding use statements 2022-05-29 07:11:15 +00:00
MediaWikiCliOptions.php Improve ObjectCache integration tests 2022-02-11 10:20:33 +11:00
MediaWikiCoversValidator.php Use str_starts_with/str_ends_with 2022-05-02 10:59:58 +03:00
MediaWikiGroupValidator.php
MediaWikiIntegrationTestCase.php Merge "test: installMockMwServices should apply overrides per default." 2022-07-18 20:38:34 +00:00
MediaWikiLangTestCase.php build: Updating dependencies 2021-07-22 03:36:05 +00:00
MediaWikiLoggerPHPUnitExtension.php Re-add PHPUnit start/end log messages 2021-11-26 13:58:41 +11:00
MediaWikiPHPUnitResultPrinter.php phpunit: Restore default progress reporter and add MWTestDox option 2022-06-12 19:22:57 +00:00
MediaWikiTestCaseTrait.php Replace trivial usa of mock builder with createMock() shortcut 2022-07-15 16:43:48 +00:00
MediaWikiUnitTestCase.php phpunit: Restore unreachable code 2022-07-12 09:57:30 +00:00
MWTestDox.php phpunit: Restore default progress reporter and add MWTestDox option 2022-06-12 19:22:57 +00:00
phpunit.php Revert "phpunit: Default to vendor/bin/phpunit, remove suites.xml" 2022-06-09 14:15:54 +00:00
README.md phpunit: Update and simplify README 2022-03-31 19:37:33 +01:00
ResourceLoaderTestCase.php resourceloader: Decouple some internal constructor args 2022-06-02 18:27:33 +01:00
suite.xml phpunit.xml.dist: Align contents with suite.xml 2022-07-12 10:32:32 +02:00

MediaWiki PHPUnit tests

WARNING: Integration tests may be destructive and alter or remove parts of your local database. We try to use temporary tables where possible, but you must never run tests on a production server or on a wiki where you don't want to lose data.

Running tests

If you haven't already, run composer update (specifically without --no-dev) in the MediaWiki core directory. This will install PHPUnit.

To read about how to run specific tests, refer to:

https://www.mediawiki.org/wiki/Manual:PHP_unit_testing/Running_the_tests

Writing tests

A guide to writing PHPUnit tests for MediaWiki can be found at:

https://www.mediawiki.org/wiki/Manual:PHP_unit_testing