Payum\Paypal\ExpressCheckout\Nvp\Tests\Action\PaymentDetailsStatusActionTest::shouldSupportStatusRequestWithArrayAsModelWhichHasPaymentRequestAmountSetToZero PHP Method

shouldSupportStatusRequestWithArrayAsModelWhichHasPaymentRequestAmountSetToZero() public method

    public function shouldSupportStatusRequestWithArrayAsModelWhichHasPaymentRequestAmountSetToZero()
    {
        $action = new PaymentDetailsStatusAction();
        $payment = array('PAYMENTREQUEST_0_AMT' => 0);
        $request = new GetHumanStatus($payment);
        $this->assertTrue($action->supports($request));
    }