1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-23 06:11:23 +01:00
PHP-Parser/test/PhpParser/Node/Scalar/MagicConstTest.php

29 lines
828 B
PHP
Raw Normal View History

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