PhpParser\Node\Stmt\ClassTest::testGetMethods PHP Method

testGetMethods() public method

public testGetMethods ( )
    public function testGetMethods()
    {
        $methods = array(new ClassMethod('foo'), new ClassMethod('bar'), new ClassMethod('fooBar'));
        $class = new Class_('Foo', array('stmts' => array(new TraitUse(array()), $methods[0], new ClassConst(array()), $methods[1], new Property(0, array()), $methods[2])));
        $this->assertSame($methods, $class->getMethods());
    }