Changeset 50986
- Timestamp:
- 05/25/2021 01:07:43 AM (4 years ago)
- Location:
- trunk/tests/phpunit/includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/bootstrap.php
r49571 r50986 194 194 _delete_all_posts(); 195 195 196 if ( version_compare( tests_get_phpunit_version(), '7. 0', '>=' ) ) {196 if ( version_compare( tests_get_phpunit_version(), '7.5', '>=' ) ) { 197 197 require __DIR__ . '/phpunit7/testcase.php'; 198 198 } else { -
trunk/tests/phpunit/includes/phpunit6/compat.php
r48952 r50986 12 12 class_alias( 'PHPUnit\Framework\Warning', 'PHPUnit_Framework_Warning' ); 13 13 class_alias( 'PHPUnit\Framework\AssertionFailedError', 'PHPUnit_Framework_AssertionFailedError' ); 14 class_alias( 'PHPUnit\Framework\Constraint\IsEqual', 'PHPUnit_Framework_Constraint_IsEqual' );15 14 class_alias( 'PHPUnit\Framework\TestSuite', 'PHPUnit_Framework_TestSuite' ); 16 15 class_alias( 'PHPUnit\Framework\TestListener', 'PHPUnit_Framework_TestListener' ); -
trunk/tests/phpunit/includes/phpunit7/testcase.php
r49037 r50986 12 12 * All WordPress unit tests should inherit from this class. 13 13 */ 14 class WP_UnitTestCase extends WP_UnitTestCase_Base { 15 16 /** 17 * Asserts that two variables are equal (with delta). 18 * 19 * This method has been backported from a more recent PHPUnit version, 20 * as tests running on PHP 5.6 use PHPUnit 5.7.x. 21 * 22 * @since 5.6.0 23 * 24 * @param mixed $expected First value to compare. 25 * @param mixed $actual Second value to compare. 26 * @param float $delta Allowed numerical distance between two values to consider them equal. 27 * @param string $message Optional. Message to display when the assertion fails. 28 * 29 * @throws ExpectationFailedException 30 * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException 31 */ 32 public static function assertEqualsWithDelta( $expected, $actual, float $delta, string $message = '' ): void { 33 $constraint = new PHPUnit\Framework\Constraint\IsEqual( 34 $expected, 35 $delta 36 ); 37 38 static::assertThat( $actual, $constraint, $message ); 39 } 40 } 14 class WP_UnitTestCase extends WP_UnitTestCase_Base {} -
trunk/tests/phpunit/includes/testcase.php
r48953 r50986 31 31 */ 32 32 public static function assertEqualsWithDelta( $expected, $actual, $delta, $message = '' ) { 33 $constraint = new PHPUnit_Framework_Constraint_IsEqual( 34 $expected, 35 $delta 36 ); 37 38 static::assertThat( $actual, $constraint, $message ); 33 static::assertEquals( $expected, $actual, $message, $delta ); 39 34 } 40 35 }
Note: See TracChangeset
for help on using the changeset viewer.