2017-11-02 18:56:01 +01:00
|
|
|
<?php declare(strict_types=1);
|
2016-07-05 22:58:49 +02:00
|
|
|
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
2017-04-27 18:14:07 +02:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class ClassConstTest extends TestCase
|
2016-07-05 22:58:49 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @dataProvider provideModifiers
|
|
|
|
*/
|
|
|
|
public function testModifiers($modifier) {
|
|
|
|
$node = new ClassConst(
|
2017-08-13 14:35:03 +02:00
|
|
|
[], // invalid
|
2016-07-05 22:58:49 +02:00
|
|
|
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);
|
2016-07-05 22:58:49 +02:00
|
|
|
|
|
|
|
$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'],
|
|
|
|
];
|
2016-07-05 22:58:49 +02:00
|
|
|
}
|
2017-04-27 18:14:07 +02:00
|
|
|
}
|