mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-03 09:57:51 +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"
27 lines
802 B
PHP
27 lines
802 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
class InterfaceTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function testGetMethods() {
|
|
$methods = [
|
|
new ClassMethod('foo'),
|
|
new ClassMethod('bar'),
|
|
];
|
|
$interface = new Class_('Foo', [
|
|
'stmts' => [
|
|
new Node\Stmt\ClassConst([new Node\Const_('C1', new Node\Scalar\String_('C1'))]),
|
|
$methods[0],
|
|
new Node\Stmt\ClassConst([new Node\Const_('C2', new Node\Scalar\String_('C2'))]),
|
|
$methods[1],
|
|
new Node\Stmt\ClassConst([new Node\Const_('C3', new Node\Scalar\String_('C3'))]),
|
|
]
|
|
]);
|
|
|
|
$this->assertSame($methods, $interface->getMethods());
|
|
}
|
|
}
|