Omnipay\Alipay\Tests\AopWapGatewayTest::testPurchase PHP Метод

testPurchase() публичный Метод

public testPurchase ( )
    public function testPurchase()
    {
        /**
         * @var AopTradeWapPayResponse $response
         */
        $response = $this->gateway->purchase(['biz_content' => ['out_trade_no' => date('YmdHis') . mt_rand(1000, 9999), 'total_amount' => 0.01, 'subject' => 'test', 'product_code' => 'QUICK_MSECURITY_PAY']])->send();
        $this->assertTrue($response->isSuccessful());
        $this->assertTrue($response->isRedirect());
        $this->assertNotEmpty($response->getRedirectUrl());
    }