Make WordPress Core

Ticket #39822: 39822.patch

File 39822.patch, 2.1 KB (added by miyauchi, 8 years ago)
  • tests/phpunit/includes/bootstrap.php

     
    33 * Installs WordPress for running the tests and loads WordPress and the test libraries
    44 */
    55
     6/**
     7 * Migration fixer for PHPUnit 6
     8 */
    69
     10if ( class_exists( 'PHPUnit\Runner\Version' ) && version_compare( PHPUnit\Runner\Version::id(), '6.0', '>=' ) ) {
     11        class_alias( 'PHPUnit\Framework\TestCase', 'PHPUnit_Framework_TestCase' );
     12        class_alias( 'PHPUnit\Framework\Exception', 'PHPUnit_Framework_Exception' );
     13        class_alias( 'PHPUnit\Framework\ExpectationFailedException', 'PHPUnit_Framework_ExpectationFailedException' );
     14        class_alias( 'PHPUnit\Framework\Error\Notice', 'PHPUnit_Framework_Error_Notice' );
     15        class_alias( 'PHPUnit\Framework\Test', 'PHPUnit_Framework_Test' );
     16        class_alias( 'PHPUnit\Framework\Warning', 'PHPUnit_Framework_Warning' );
     17        class_alias( 'PHPUnit\Framework\AssertionFailedError', 'PHPUnit_Framework_AssertionFailedError' );
     18        class_alias( 'PHPUnit\Framework\TestSuite', 'PHPUnit_Framework_TestSuite' );
     19        class_alias( 'PHPUnit\Framework\TestListener', 'PHPUnit_Framework_TestListener' );
     20        class_alias( 'PHPUnit\Util\GlobalState', 'PHPUnit_Util_GlobalState' );
     21        class_alias( 'PHPUnit\Util\Getopt', 'PHPUnit_Util_Getopt' );
     22
     23        class PHPUnit_Util_Test extends PHPUnit\Util\Test {
     24                public static function getTickets( $className, $methodName ) {
     25                        $annotations = self::parseTestMethodAnnotations(
     26                        $className, $methodName
     27                        );
     28
     29                        $tickets = array();
     30
     31                        if (isset($annotations['class']['ticket'])) {
     32                                $tickets = $annotations['class']['ticket'];
     33                        }
     34
     35                        if (isset($annotations['method']['ticket'])) {
     36                                $tickets = array_merge($tickets, $annotations['method']['ticket']);
     37                        }
     38
     39                        return array_unique($tickets);
     40                }
     41        }
     42}
     43
    744$config_file_path = dirname( dirname( __FILE__ ) );
    845if ( ! file_exists( $config_file_path . '/wp-tests-config.php' ) ) {
    946        // Support the config file from the root of the develop repository.