php-parser/test/PhpParser/Node/Stmt/ClassConstTest.php

35 lines
828 B
PHP
Raw Normal View History

<?php declare(strict_types=1);
namespace PhpParser\Node\Stmt;
class ClassConstTest extends \PHPUnit\Framework\TestCase
{
/**
* @dataProvider provideModifiers
*/
public function testModifiers($modifier) {
$node = new ClassConst(
2017-08-13 14:35:03 +02:00
[], // invalid
constant('PhpParser\Node\Stmt\Class_::MODIFIER_' . strtoupper($modifier))
);
$this->assertTrue($node->{'is' . $modifier}());
}
public function testNoModifiers() {
2017-08-13 14:35:03 +02:00
$node = new ClassConst([], 0);
$this->assertTrue($node->isPublic());
$this->assertFalse($node->isProtected());
$this->assertFalse($node->isPrivate());
}
public function provideModifiers() {
2017-08-13 14:35:03 +02:00
return [
['public'],
['protected'],
['private'],
];
}
2017-04-27 18:14:07 +02:00
}