Payum\Paypal\Masspay\Nvp\Tests\Action\GetPayoutStatusActionTest::shouldMarkPayedoutIfAckSuccessWithWarning PHP Method

shouldMarkPayedoutIfAckSuccessWithWarning() public method

    public function shouldMarkPayedoutIfAckSuccessWithWarning()
    {
        $action = new GetPayoutStatusAction();
        $payout = ['ACK' => Api::ACK_SUCCESS_WITH_WARNING];
        $request = new GetHumanStatus($payout);
        $action->execute($request);
        $this->assertTrue($request->isPayedout());
    }