doc/rules/php_unit/php_unit_strict.rst
php_unit_strictPHPUnit methods like assertSame should be used instead of assertEquals.
This rule is RISKY
Risky when any of the functions are overridden or when testing object equality.
This rule is CONFIGURABLE
You can configure this rule using the following option: assertions.
assertions
List of assertion methods to fix.
Allowed values: a subset of ``['assertAttributeEquals', 'assertAttributeNotEquals', 'assertEquals', 'assertNotEquals']``
Default value: ``['assertAttributeEquals', 'assertAttributeNotEquals', 'assertEquals', 'assertNotEquals']``
Examples
--------
Example #1
~~~~~~~~~~
*Default* configuration.
.. code-block:: diff
--- Original
+++ New
<?php
final class MyTest extends \PHPUnit_Framework_TestCase
{
public function testSomeTest()
{
- $this->assertAttributeEquals(a(), b());
- $this->assertAttributeNotEquals(a(), b());
- $this->assertEquals(a(), b());
- $this->assertNotEquals(a(), b());
+ $this->assertAttributeSame(a(), b());
+ $this->assertAttributeNotSame(a(), b());
+ $this->assertSame(a(), b());
+ $this->assertNotSame(a(), b());
}
}
Example #2
~~~~~~~~~~
With configuration: ``['assertions' => ['assertEquals']]``.
.. code-block:: diff
--- Original
+++ New
<?php
final class MyTest extends \PHPUnit_Framework_TestCase
{
public function testSomeTest()
{
$this->assertAttributeEquals(a(), b());
$this->assertAttributeNotEquals(a(), b());
- $this->assertEquals(a(), b());
+ $this->assertSame(a(), b());
$this->assertNotEquals(a(), b());
}
}
Rule sets
---------
The rule is part of the following rule set:
- `@PhpCsFixer:risky <./../../ruleSets/PhpCsFixerRisky.rst>`_
References
----------
- Fixer class: `PhpCsFixer\\Fixer\\PhpUnit\\PhpUnitStrictFixer <./../../../src/Fixer/PhpUnit/PhpUnitStrictFixer.php>`_
- Test class: `PhpCsFixer\\Tests\\Fixer\\PhpUnit\\PhpUnitStrictFixerTest <./../../../tests/Fixer/PhpUnit/PhpUnitStrictFixerTest.php>`_
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.