Difference between revisions 2807678 and 3472130 on mediawikiwiki

{{TNT|Manual:PHP_unit_testing/navigation}}

You must have PHPUnit 3.7.0 (or later) installed to run the unit tests. Most developers use the very latest PHPUnit version, so there is no guarantee an older one will actually pass the tests we wrote. 

'''It seems that PHPUnit 7 does not work with MediaWiki at the moment. Use PHPUnit 6 instead.'''

== Install methods ==
Note the [[#Known issues|known issue below]]. The Debian/Ubuntu package is broken.

The [https://phpunit.de/manual/current/enreadthedocs.io/en/8.4/installation.html recommended way to install PHPUnit] is by downloading a PHP Archive (PHAR file). With the resolution of [[bugzilla:58881|bug 58881]], this should work now.

If you use [[Composer]] to manage your MediaWiki dependencies, it should install PHPUnit for you, although it installs PHPUnit specifically for the <code>tests/phpunit/phpunit.php</code> script, not for general command-line use.

== Testing your installation ==

<source lang="bash">
$ which phpunit
(contracted; show full)
 PHPUnit 3.6.7 or later required, you have 3.5.15.
...this means that you probably have more than one version of PHPUnit installed on your machine. You may need to edit your include_path in your php.ini file to point to the location of the newer installation. You may also need to add this path to the PATH variable in your .profile.

If you get the error...
 This version of PHPUnit requires PHP 5.6.
...you either need to upgrade PHP or downgrade PHPUnit. PHPUnit 4.8 is compatible with PHP 5.5 and earlier.