1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<?php
require_once dirname( __DIR__ ) . '/abstract-testcase.php';
/**
* Defines a basic fixture to run multiple tests.
*
* Resets the state of the WordPress installation before and after every test.
*
* Includes utility functions and assertions useful for testing WordPress.
*
* All WordPress unit tests should inherit from this class.
*/
class WP_UnitTestCase extends WP_UnitTestCase_Base {
/**
* Asserts that two variables are equal (with delta).
*
* This method has been backported from a more recent PHPUnit version,
* as tests running on PHP 5.6 use PHPUnit 5.7.x.
*
* @since 5.6.0
*
* @param mixed $expected First value to compare.
* @param mixed $actual Second value to compare.
* @param float $delta Allowed numerical distance between two values to consider them equal.
* @param string $message Optional. Message to display when the assertion fails.
*
* @throws ExpectationFailedException
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
*/
public static function assertEqualsWithDelta( $expected, $actual, float $delta, string $message = '' ): void {
$constraint = new PHPUnit\Framework\Constraint\IsEqual(
$expected,
$delta
);
static::assertThat( $actual, $constraint, $message );
}
/**
* Returns a mock object for the specified abstract class with all abstract
* methods of the class mocked. Concrete methods to mock can be specified with
* the last parameter.
*
* This method replaces the native PHPUnit method to avoid parse errors
* due to `match` being a reserved keyword in PHP 8.
*
* To run on PHP 8, the tests using this method require PHPUnit 9.3 or later.
*
* When the test suite is updated for compatibility with PHPUnit 9.x,
* this override can be removed.
*
* @since 5.6.0
*
* @param string $original_class_name
* @param string $mock_class_name
* @param bool $call_original_constructor
* @param bool $call_original_clone
* @param bool $call_autoload
* @param array $mocked_methods
* @param bool $clone_arguments
*
* @throws \ReflectionException
* @throws RuntimeException
* @throws Exception
*
* @return MockObject
*/
public function getMockForAbstractClass( $original_class_name, array $arguments = array(), $mock_class_name = '', $call_original_constructor = true, $call_original_clone = true, $call_autoload = true, $mocked_methods = array(), $clone_arguments = false ): PHPUnit\Framework\MockObject\MockObject {
if ( PHP_VERSION_ID >= 80000 && version_compare( tests_get_phpunit_version(), '9.3', '<' ) ) {
$this->markTestSkipped( 'To run on PHP 8, this test requires PHPUnit 9.3 or later.' );
}
return parent::getMockForAbstractClass( $original_class_name, $arguments, $mock_class_name, $call_original_constructor, $call_original_clone, $call_autoload, $mocked_methods, $clone_arguments );
}
/**
* Returns a builder object to create mock objects using a fluent interface.
*
* This method replaces the native PHPUnit method to avoid parse errors
* due to `match` being a reserved keyword in PHP 8.
*
* To run on PHP 8, the tests using this method require PHPUnit 9.3 or later.
*
* When the test suite is updated for compatibility with PHPUnit 9.x,
* this override can be removed.
*
* @since 5.6.0
*
* @param string|string[] $class_name
*/
public function getMockBuilder( $class_name ): PHPUnit\Framework\MockObject\MockBuilder {
if ( PHP_VERSION_ID >= 80000 && version_compare( tests_get_phpunit_version(), '9.3', '<' ) ) {
$this->markTestSkipped( 'To run on PHP 8, this test requires PHPUnit 9.3 or later.' );
}
return parent::getMockBuilder( $class_name );
}
}
|