mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-30 04:19:30 +01:00
b7e6361536
- "global" -> remove unused "use" statements - "phpunit" -> fix "@covers" comments - "phpunit" -> replace "->will($this->returnValue()" with "->willReturn()" - "UseTest.php" -> add missing namespace - "composer.json" -> use "autoload-dev" - remove -> "require_once" usage in the tests (use autoload-dev via composer.json) -> most of the changes are done automatically by "https://github.com/rectorphp/rector"
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Builder;
|
|
|
|
use PhpParser\Builder;
|
|
use PhpParser\Node\Name;
|
|
use PhpParser\Node\Stmt;
|
|
|
|
class UseTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
protected function createUseBuilder($name, $type = Stmt\Use_::TYPE_NORMAL) {
|
|
return new Builder\Use_($name, $type);
|
|
}
|
|
|
|
public function testCreation() {
|
|
$node = $this->createUseBuilder('Foo\Bar')->getNode();
|
|
$this->assertEquals(new Stmt\Use_([
|
|
new Stmt\UseUse(new Name('Foo\Bar'), null)
|
|
]), $node);
|
|
|
|
$node = $this->createUseBuilder(new Name('Foo\Bar'))->as('XYZ')->getNode();
|
|
$this->assertEquals(new Stmt\Use_([
|
|
new Stmt\UseUse(new Name('Foo\Bar'), 'XYZ')
|
|
]), $node);
|
|
|
|
$node = $this->createUseBuilder('foo\bar', Stmt\Use_::TYPE_FUNCTION)->as('foo')->getNode();
|
|
$this->assertEquals(new Stmt\Use_([
|
|
new Stmt\UseUse(new Name('foo\bar'), 'foo')
|
|
], Stmt\Use_::TYPE_FUNCTION), $node);
|
|
|
|
$node = $this->createUseBuilder('foo\BAR', Stmt\Use_::TYPE_CONSTANT)->as('FOO')->getNode();
|
|
$this->assertEquals(new Stmt\Use_([
|
|
new Stmt\UseUse(new Name('foo\BAR'), 'FOO')
|
|
], Stmt\Use_::TYPE_CONSTANT), $node);
|
|
}
|
|
}
|