1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-11 08:59:46 +01:00
PHP-Parser/test/PhpParser/Node/Stmt/InterfaceTest.php

28 lines
790 B
PHP
Raw Normal View History

<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
2017-04-27 18:14:07 +02:00
use PHPUnit\Framework\TestCase;
2017-04-27 18:14:07 +02:00
class InterfaceTest extends TestCase
{
public function testGetMethods() {
2017-08-13 14:35:03 +02:00
$methods = [
new ClassMethod('foo'),
new ClassMethod('bar'),
2017-08-13 14:35:03 +02:00
];
$interface = new Class_('Foo', [
'stmts' => [
new Node\Stmt\ClassConst([new Node\Const_('C1', new Node\Scalar\String_('C1'))]),
$methods[0],
2017-08-13 14:35:03 +02:00
new Node\Stmt\ClassConst([new Node\Const_('C2', new Node\Scalar\String_('C2'))]),
$methods[1],
2017-08-13 14:35:03 +02:00
new Node\Stmt\ClassConst([new Node\Const_('C3', new Node\Scalar\String_('C3'))]),
]
]);
$this->assertSame($methods, $interface->getMethods());
}
}