2017-11-02 18:56:01 +01:00
|
|
|
<?php declare(strict_types=1);
|
2014-02-21 18:16:18 +01:00
|
|
|
|
|
|
|
namespace PhpParser\Node\Scalar;
|
|
|
|
|
2017-04-27 18:14:07 +02:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class MagicConstTest extends TestCase
|
|
|
|
{
|
2014-02-21 18:16:18 +01: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__'],
|
|
|
|
];
|
2014-02-21 18:16:18 +01:00
|
|
|
}
|
2017-04-27 18:14:07 +02:00
|
|
|
}
|