* 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\Console\Report\ListSetsReport; use PhpCsFixer\Console\Report\ListSetsReport\ReportSummary; use PhpCsFixer\RuleSet\Sets\PhpCsFixerSet; use PhpCsFixer\Tests\TestCase; /** * @author Dariusz Rumiński * * @internal * * @covers \PhpCsFixer\Console\Report\ListSetsReport\ReportSummary */ final class ReportSummaryTest extends TestCase { public function testReportSummary(): void { $sets = [ new PhpCsFixerSet(), ]; $reportSummary = new ReportSummary( $sets ); self::assertSame($sets, $reportSummary->getSets()); } }