mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-04 02:17:56 +01:00
35 lines
938 B
PHP
35 lines
938 B
PHP
<?php
|
|
|
|
class PHPParser_Tests_Node_Stmt_ClassMethodTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @dataProvider provideModifiers
|
|
*/
|
|
public function testModifiers($modifier) {
|
|
$node = new PHPParser_Node_Stmt_ClassMethod('foo', array(
|
|
'type' => constant('PHPParser_Node_Stmt_Class::MODIFIER_' . strtoupper($modifier))
|
|
));
|
|
|
|
$this->assertTrue($node->{'is' . $modifier}());
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideModifiers
|
|
*/
|
|
public function testNoModifiers($modifier) {
|
|
$node = new PHPParser_Node_Stmt_ClassMethod('foo', array('type' => 0));
|
|
|
|
$this->assertFalse($node->{'is' . $modifier}());
|
|
}
|
|
|
|
public function provideModifiers() {
|
|
return array(
|
|
array('public'),
|
|
array('protected'),
|
|
array('private'),
|
|
array('abstract'),
|
|
array('final'),
|
|
array('static'),
|
|
);
|
|
}
|
|
} |