12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- declare(strict_types=1);
- /*
- * 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\Console\Report\ListSetsReport;
- use PhpCsFixer\Console\Report\ListSetsReport\ReporterInterface;
- use PhpCsFixer\Console\Report\ListSetsReport\ReportSummary;
- use PhpCsFixer\RuleSet\Sets\PhpCsFixerSet;
- use PhpCsFixer\RuleSet\Sets\SymfonyRiskySet;
- use PhpCsFixer\Tests\TestCase;
- /**
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- */
- abstract class AbstractReporterTestCase extends TestCase
- {
- /**
- * @var null|ReporterInterface
- */
- protected $reporter;
- protected function setUp(): void
- {
- parent::setUp();
- $this->reporter = $this->createReporter();
- }
- protected function tearDown(): void
- {
- parent::tearDown();
- $this->reporter = null;
- }
- final public function testGetFormat(): void
- {
- self::assertSame(
- $this->getFormat(),
- $this->reporter->getFormat()
- );
- }
- /**
- * @dataProvider provideGenerateCases
- */
- final public function testGenerate(string $expectedReport, ReportSummary $reportSummary): void
- {
- $actualReport = $this->reporter->generate($reportSummary);
- $this->assertFormat($expectedReport, $actualReport);
- }
- /**
- * @return iterable<string, array{string, ReportSummary}>
- */
- final public static function provideGenerateCases(): iterable
- {
- yield 'example' => [
- static::createSimpleReport(),
- new ReportSummary([
- new SymfonyRiskySet(),
- new PhpCsFixerSet(),
- ]),
- ];
- }
- abstract protected function createReporter(): ReporterInterface;
- abstract protected function getFormat(): string;
- abstract protected function assertFormat(string $expected, string $input): void;
- abstract protected static function createSimpleReport(): string;
- }
|