* 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\RuleSet; use PhpCsFixer\Tests\Fixtures\TestRuleSet; use PhpCsFixer\Tests\TestCase; /** * @internal * * @covers \PhpCsFixer\RuleSet\AbstractRuleSetDescription */ final class AbstractRuleSetDescriptionTest extends TestCase { public function testAbstractRuleSet(): void { $set = new TestRuleSet(); self::assertSame('@TestRule', $set->getName()); self::assertFalse($set->isRisky()); } }