Make WordPress Core


Ignore:
Timestamp:
01/28/2019 02:10:24 PM (6 years ago)
Author:
SergeyBiryukov
Message:

Build/Test Tools: Add support for PHPUnit 7.x.

  • Create an abstract WP_UnitTestCase_Base class to share between PHPUnit 7.x and older versions.
  • Add a speed-trap loader to determine which SpeedTrapListener class needs to be loaded for the current PHPUnit version.
  • Remove unnecessary PHPUnit\Util\Test and PHPUnit_Util_Getopt inheritances.
  • Update Travis CI config to use PHPUnit 7.x for PHP 7.1, 7.2, and nightly PHP versions.

Props jipmoors, netweb, desrosj, ayeshrajans, soulseekah, SergeyBiryukov.
See #43218.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/post/query.php

    r44456 r44701  
    720720        $q->posts = $posts;
    721721
    722         $methd = new \ReflectionMethod( 'WP_Query', 'set_found_posts' );
     722        $methd = new ReflectionMethod( 'WP_Query', 'set_found_posts' );
    723723        $methd->setAccessible( true );
    724724        $methd->invoke( $q, array( 'no_found_rows' => false ), array() );
Note: See TracChangeset for help on using the changeset viewer.