WordPress.org

Make WordPress Core

Changeset 51576


Ignore:
Timestamp:
08/07/2021 11:52:05 AM (2 months ago)
Author:
SergeyBiryukov
Message:

Tests: Replace expectException() for PHP native errors with calls to the dedicated PHPUnit 8.4+ methods.

The old manner of testing these is soft deprecated as of PHPUnit 8.4, hard deprecated as of PHPUnit 9.0 and will be removed in PHPUnit 10.0.

Most calls like this were already replaced in [51563], however, this particular one could not be changed yet due to the mismatch between the PHPUnit version and the PHP version on which the tests were being run. This is fixed now.

References:

Follow-up to [51559-51575].

Props jrf.
See #46149.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/dependencies/scripts.php

    r51568 r51576  
    14271427                $this->expectWarning();
    14281428            } else {
    1429                 /*
    1430                  * As this exception will only be set on PHP 8 in combination with PHPUnit 7, this will work (for now).
    1431                  * Once the PHPUnit version constraints have been widened and a _supported_ PHPUnit version is
    1432                  * used to run the tests on PHP 8.x, this should be changed to `$this->expectError()`.
    1433                  */
    1434                 $this->expectException( 'Error' );
     1429                $this->expectError();
    14351430            }
    14361431        }
Note: See TracChangeset for help on using the changeset viewer.