1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests;
- use PhpCsFixer\WordMatcher;
- /**
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\WordMatcher
- */
- final class WordMatcherTest extends TestCase
- {
- /**
- * @param null|string $expected
- * @param string $needle
- *
- * @dataProvider provideMatchCases
- */
- public function testMatch($expected, $needle, array $candidates)
- {
- $matcher = new WordMatcher($candidates);
- static::assertSame($expected, $matcher->match($needle));
- }
- /**
- * @return array
- */
- public function provideMatchCases()
- {
- return [
- [
- null,
- 'foo',
- [
- 'no_blank_lines_after_class_opening',
- 'no_blank_lines_after_phpdoc',
- ],
- ],
- [
- 'no_blank_lines_after_phpdoc',
- 'no_blank_lines_after_phpdocs',
- [
- 'no_blank_lines_after_class_opening',
- 'no_blank_lines_after_phpdoc',
- ],
- ],
- [
- 'no_blank_lines_after_foo',
- 'no_blank_lines_foo',
- [
- 'no_blank_lines_after_foo',
- 'no_blank_lines_before_foo',
- ],
- ],
- [
- null,
- 'braces',
- [
- 'elseif',
- ],
- ],
- ];
- }
- }
|