
php_unit_test_case_static_method_calls
¶Calls to PHPUnit\Framework\TestCase
static methods must all be of the same
type, either $this->
, self::
or static::
.
Risky when PHPUnit methods are overridden or not accessible, or when project has PHPUnit incompatibilities.
call_type
¶The call type to use for referring to PHPUnit methods.
Allowed values: 'self'
, 'static'
, 'this'
Default value: 'static'
methods
¶Dictionary of method
=> call_type
values that differ from the default
strategy.
Allowed types: array
Default value: []
Default configuration.
--- Original
+++ New
<?php
final class MyTest extends \PHPUnit_Framework_TestCase
{
public function testMe()
{
- $this->assertSame(1, 2);
- self::assertSame(1, 2);
+ static::assertSame(1, 2);
+ static::assertSame(1, 2);
static::assertSame(1, 2);
}
}
With configuration: ['call_type' => 'this']
.
--- Original
+++ New
<?php
final class MyTest extends \PHPUnit_Framework_TestCase
{
public function testMe()
{
$this->assertSame(1, 2);
- self::assertSame(1, 2);
- static::assertSame(1, 2);
+ $this->assertSame(1, 2);
+ $this->assertSame(1, 2);
}
}
The rule is part of the following rule set:
Using the @PhpCsFixer:risky rule set will enable the php_unit_test_case_static_method_calls
rule with the config below:
['call_type' => 'self']