Payum\Paypal\ExpressCheckout\Nvp\Tests\Action\CaptureActionTest::shouldRequestAuthorizeTokenIfPayerIdNotSetInModel PHP Method

shouldRequestAuthorizeTokenIfPayerIdNotSetInModel() public method

    public function shouldRequestAuthorizeTokenIfPayerIdNotSetInModel()
    {
        $gatewayMock = $this->createGatewayMock();
        $gatewayMock->expects($this->at(0))->method('execute')->with($this->isInstanceOf(GetHttpRequest::class));
        $gatewayMock->expects($this->at(1))->method('execute')->with($this->isInstanceOf(Sync::class));
        $gatewayMock->expects($this->at(2))->method('execute')->with($this->isInstanceOf(AuthorizeToken::class));
        $gatewayMock->expects($this->at(3))->method('execute')->with($this->isInstanceOf(Sync::class));
        $action = new CaptureAction();
        $action->setGateway($gatewayMock);
        $action->execute(new Capture(array('TOKEN' => 'aToken', 'PAYERID' => null, 'CHECKOUTSTATUS' => Api::CHECKOUTSTATUS_PAYMENT_ACTION_NOT_INITIATED)));
    }