ApiPlatform\Core\Tests\Util\ReflectionTest::testWithGoodMethodName PHP Method

testWithGoodMethodName() public method

    public function testWithGoodMethodName()
    {
        $methodName = 'addGerard';
        $reflection = new Reflection();
        $return = $reflection->getProperty($methodName);
        $this->assertEquals($return, 'Gerard');
    }