mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-04 18:38:05 +01:00
0f69f12b94
Fixes issue #143
40 lines
1.0 KiB
PHP
40 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
class ClassMethodTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @dataProvider provideModifiers
|
|
*/
|
|
public function testModifiers($modifier) {
|
|
$node = new ClassMethod('foo', array(
|
|
'type' => constant('PhpParser\Node\Stmt\Class_::MODIFIER_' . strtoupper($modifier))
|
|
));
|
|
|
|
$this->assertTrue($node->{'is' . $modifier}());
|
|
}
|
|
|
|
public function testNoModifiers() {
|
|
$node = new ClassMethod('foo', array('type' => 0));
|
|
|
|
$this->assertTrue($node->isPublic());
|
|
$this->assertFalse($node->isProtected());
|
|
$this->assertFalse($node->isPrivate());
|
|
$this->assertFalse($node->isAbstract());
|
|
$this->assertFalse($node->isFinal());
|
|
$this->assertFalse($node->isStatic());
|
|
}
|
|
|
|
public function provideModifiers() {
|
|
return array(
|
|
array('public'),
|
|
array('protected'),
|
|
array('private'),
|
|
array('abstract'),
|
|
array('final'),
|
|
array('static'),
|
|
);
|
|
}
|
|
}
|