本文整理匯總了PHP中Magento\Sales\Model\Order\Payment::canCapture方法的典型用法代碼示例。如果您正苦於以下問題:PHP Payment::canCapture方法的具體用法?PHP Payment::canCapture怎麽用?PHP Payment::canCapture使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Magento\Sales\Model\Order\Payment
的用法示例。
在下文中一共展示了Payment::canCapture方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testCanCaptureAuthorizationTransaction
public function testCanCaptureAuthorizationTransaction()
{
$paymentId = 1;
$this->payment->setId($paymentId);
$this->paymentMethodMock->expects($this->once())->method('canCapture')->willReturn(true);
$transaction = $this->getMock('Magento\\Sales\\Model\\Order\\Payment\\Transaction', [], [], '', false);
$collection = $this->getMock('Magento\\Sales\\Model\\Resource\\Order\\Payment\\Transaction\\Collection', [], [], '', false);
$this->transactionCollectionFactory->expects($this->once())->method('create')->willReturn($collection);
$collection->expects($this->once())->method('setOrderFilter')->willReturnSelf();
$collection->expects($this->once())->method('addPaymentIdFilter')->willReturnSelf();
$collection->expects($this->once())->method('addTxnTypeFilter')->willReturnSelf();
$collection->method('setOrder')->willReturnMap([['created_at', \Magento\Framework\Data\Collection::SORT_ORDER_DESC, $collection], ['transaction_id', \Magento\Framework\Data\Collection::SORT_ORDER_DESC, [$transaction]]]);
$this->assertTrue($this->payment->canCapture());
}
示例2: testCannotCapture
public function testCannotCapture()
{
$this->paymentMethodMock->expects($this->once())->method('canCapture')->willReturn(false);
$this->assertFalse($this->payment->canCapture());
}
示例3: canCapture
/**
* {@inheritdoc}
*/
public function canCapture()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'canCapture');
if (!$pluginInfo) {
return parent::canCapture();
} else {
return $this->___callPlugins('canCapture', func_get_args(), $pluginInfo);
}
}