
php_unit_set_up_tear_down_visibility
¶Changes the visibility of the setUp()
and tearDown()
functions of
PHPUnit to protected
, to match the PHPUnit TestCase.
This fixer may change functions named setUp()
or tearDown()
outside of
PHPUnit tests, when a class is wrongly seen as a PHPUnit test.
--- Original
+++ New
<?php
final class MyTest extends \PHPUnit_Framework_TestCase
{
private $hello;
- public function setUp()
+ protected function setUp()
{
$this->hello = "hello";
}
- public function tearDown()
+ protected function tearDown()
{
$this->hello = null;
}
}
The rule is part of the following rule sets:
Using the @PhpCsFixer:risky rule set will enable the php_unit_set_up_tear_down_visibility
rule.
Using the @Symfony:risky rule set will enable the php_unit_set_up_tear_down_visibility
rule.