PhpParser\Node\Stmt\ClassTest::testGetMethod PHP Méthode

testGetMethod() public méthode

public testGetMethod ( )
    public function testGetMethod()
    {
        $methodConstruct = new ClassMethod('__CONSTRUCT');
        $methodTest = new ClassMethod('test');
        $class = new Class_('Foo', array('stmts' => array(new ClassConst(array()), $methodConstruct, new Property(0, array()), $methodTest)));
        $this->assertSame($methodConstruct, $class->getMethod('__construct'));
        $this->assertSame($methodTest, $class->getMethod('test'));
        $this->assertNull($class->getMethod('nonExisting'));
    }