1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-02 17:28:27 +01:00
PHP-Parser/test/PhpParser/Node/Scalar/MagicConstTest.php

27 lines
794 B
PHP
Raw Normal View History

<?php declare(strict_types=1);
namespace PhpParser\Node\Scalar;
class MagicConstTest extends \PHPUnit\Framework\TestCase
2017-04-27 18:14:07 +02:00
{
/**
* @dataProvider provideTestGetName
*/
public function testGetName(MagicConst $magicConst, $name) {
$this->assertSame($name, $magicConst->getName());
}
public function provideTestGetName() {
2017-08-13 14:35:03 +02:00
return [
[new MagicConst\Class_, '__CLASS__'],
[new MagicConst\Dir, '__DIR__'],
[new MagicConst\File, '__FILE__'],
[new MagicConst\Function_, '__FUNCTION__'],
[new MagicConst\Line, '__LINE__'],
[new MagicConst\Method, '__METHOD__'],
[new MagicConst\Namespace_, '__NAMESPACE__'],
[new MagicConst\Trait_, '__TRAIT__'],
];
}
2017-04-27 18:14:07 +02:00
}