mirror of
git://develop.git.wordpress.org/
synced 2025-03-31 10:12:40 +02:00
Previously, two situations were taken in to account: 1. The `WP_TESTS_PHPUNIT_POLYFILLS_PATH` constant is defined => just show a message about the version mismatch. 2. The constant is not defined => show a message to run `composer update`. This message is intended for people trying to run the WP Core tests. This could lead to an unclear situation for people trying to run plugin/theme integration tests without the new `WP_TESTS_PHPUNIT_POLYFILLS_PATH` constant being defined. They could be shown the message to run `composer update` while if they would do so for their local install without adding the Polyfills, the message would still display the next time they would attempt to run the tests. This commit: 1. Provides more information about the PHPUnit Polyfills version detected vs the version expected. 2. Shows a more specific message to guide users which have the `WP_TESTS_PHPUNIT_POLYFILLS_PATH` constant declared. 3. Only shows the message to run `composer update` when the `WP_RUN_CORE_TESTS` constant is declared to prevent confusing people more. Follow-up to [51598], [51810], [51811]. Props jrf, schlessera, hellofromTonya, jeherve, lucatume. See #46149. git-svn-id: https://develop.svn.wordpress.org/trunk@51812 602fd350-edb4-49c9-b593-d223f7449a82