* Dariusz Rumiński * * 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\WhitespacesFixerConfig; /** * @author Dariusz Rumiński * * @internal * * @covers \PhpCsFixer\WhitespacesFixerConfig */ final class WhitespacesFixerConfigTest extends TestCase { /** * @dataProvider provideFixCases */ public function testFix(string $indent, string $lineEnding, ?string $exceptionRegExp = null): void { if (null !== $exceptionRegExp) { $this->expectException(\InvalidArgumentException::class); $this->expectExceptionMessageMatches('%^'.preg_quote($exceptionRegExp, '%').'$%'); } $config = new WhitespacesFixerConfig($indent, $lineEnding); self::assertSame($indent, $config->getIndent()); self::assertSame($lineEnding, $config->getLineEnding()); } /** * @return iterable */ public static function provideFixCases(): iterable { yield [' ', "\n"]; yield ["\t", "\n"]; yield [' ', "\r\n"]; yield ["\t", "\r\n"]; yield [' ', 'asd', 'Invalid "lineEnding" param, expected "\n" or "\r\n".']; yield ['std', "\n", 'Invalid "indent" param, expected tab or two or four spaces.']; } }