| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php declare(strict_types=1);
- namespace PhpParser\Node\Stmt;
- use PhpParser\Modifiers;
- class PropertyTest extends \PHPUnit\Framework\TestCase {
- /**
- * @dataProvider provideModifiers
- */
- public function testModifiers($modifier): void {
- $node = new Property(
- constant(Modifiers::class . '::' . strtoupper($modifier)),
- [] // invalid
- );
- $this->assertTrue($node->{'is' . $modifier}());
- }
- public function testNoModifiers(): void {
- $node = new Property(0, []);
- $this->assertTrue($node->isPublic());
- $this->assertFalse($node->isProtected());
- $this->assertFalse($node->isPrivate());
- $this->assertFalse($node->isStatic());
- $this->assertFalse($node->isReadonly());
- }
- public function testStaticImplicitlyPublic(): void {
- $node = new Property(Modifiers::STATIC, []);
- $this->assertTrue($node->isPublic());
- $this->assertFalse($node->isProtected());
- $this->assertFalse($node->isPrivate());
- $this->assertTrue($node->isStatic());
- $this->assertFalse($node->isReadonly());
- }
- public static function provideModifiers() {
- return [
- ['public'],
- ['protected'],
- ['private'],
- ['static'],
- ['readonly'],
- ];
- }
- }
|