123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- ====================================
- Rule ``php_unit_data_provider_name``
- ====================================
- Data provider names must match the name of the test.
- Warning
- -------
- Using this rule is risky
- ~~~~~~~~~~~~~~~~~~~~~~~~
- Fixer could be risky if one is calling data provider by name as function.
- Configuration
- -------------
- ``prefix``
- ~~~~~~~~~~
- Prefix that replaces "test".
- Allowed types: ``string``
- Default value: ``'provide'``
- ``suffix``
- ~~~~~~~~~~
- Suffix to be present at the end.
- Allowed types: ``string``
- Default value: ``'Cases'``
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- *Default* configuration.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- class FooTest extends TestCase {
- /**
- - * @dataProvider dataProvider
- + * @dataProvider provideSomethingCases
- */
- public function testSomething($expected, $actual) {}
- - public function dataProvider() {}
- + public function provideSomethingCases() {}
- }
- Example #2
- ~~~~~~~~~~
- With configuration: ``['prefix' => 'data_', 'suffix' => '']``.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- class FooTest extends TestCase {
- /**
- - * @dataProvider dt_prvdr_ftr
- + * @dataProvider data_feature
- */
- public function test_feature($expected, $actual) {}
- - public function dt_prvdr_ftr() {}
- + public function data_feature() {}
- }
- Example #3
- ~~~~~~~~~~
- With configuration: ``['prefix' => 'provides', 'suffix' => 'Data']``.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- class FooTest extends TestCase {
- /**
- * @dataProvider dataProviderUsedInMultipleTests
- */
- public function testA($expected, $actual) {}
- /**
- * @dataProvider dataProviderUsedInMultipleTests
- */
- public function testB($expected, $actual) {}
- /**
- - * @dataProvider dataProviderUsedInSingleTest
- + * @dataProvider providesCData
- */
- public function testC($expected, $actual) {}
- /**
- * @dataProvider dataProviderUsedAsFirstInTest
- * @dataProvider dataProviderUsedAsSecondInTest
- */
- public function testD($expected, $actual) {}
- public function dataProviderUsedInMultipleTests() {}
- - public function dataProviderUsedInSingleTest() {}
- + public function providesCData() {}
- public function dataProviderUsedAsFirstInTest() {}
- public function dataProviderUsedAsSecondInTest() {}
- }
- Rule sets
- ---------
- The rule is part of the following rule set:
- - `@PhpCsFixer:risky <./../../ruleSets/PhpCsFixerRisky.rst>`_
|