Fork me on GitHub
a Sensio Labs Product

Brazilian Kangaroo (v3.17.0) edition

Rule 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.

Warning

Using this rule is risky

This fixer may change functions named setUp() or tearDown() outside of PHPUnit tests, when a class is wrongly seen as a PHPUnit test.

Examples

Example #1

--- 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;
     }
 }

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer:risky

Using the @PhpCsFixer:risky rule set will enable the php_unit_set_up_tear_down_visibility rule.

@Symfony:risky

Using the @Symfony:risky rule set will enable the php_unit_set_up_tear_down_visibility rule.

The logo is © 2010-2022 Sensio Labs