12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- ===============================
- Rule ``php_unit_method_casing``
- ===============================
- Enforce camel (or snake) case for PHPUnit test methods, following configuration.
- Configuration
- -------------
- ``case``
- ~~~~~~~~
- Apply camel or snake case to test methods.
- Allowed values: ``'camel_case'`` and ``'snake_case'``
- Default value: ``'camel_case'``
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- *Default* configuration.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- class MyTest extends \PhpUnit\FrameWork\TestCase
- {
- - public function test_my_code() {}
- + public function testMyCode() {}
- }
- Example #2
- ~~~~~~~~~~
- With configuration: ``['case' => 'snake_case']``.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- class MyTest extends \PhpUnit\FrameWork\TestCase
- {
- - public function testMyCode() {}
- + public function test_my_code() {}
- }
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
- - `@Symfony <./../../ruleSets/Symfony.rst>`_
|