Exemplo n.º 1
0
 /**
  * @covers \Magento\BraintreeTwo\Helper\CcType::getCcTypes
  */
 public function testGetCcTypes()
 {
     $this->ccTypeSource->expects(static::once())->method('toOptionArray')->willReturn(['label' => 'VISA', 'value' => 'VI']);
     $this->helper->getCcTypes();
     $this->ccTypeSource->expects(static::never())->method('toOptionArray');
     $this->helper->getCcTypes();
 }
Exemplo n.º 2
0
 /**
  * Create mock for credit card type
  */
 private function initCcTypeMock()
 {
     $this->ccType = $this->getMockBuilder(CcType::class)->disableOriginalConstructor()->setMethods(['getCcTypeLabelMap'])->getMock();
     $this->ccType->expects(static::once())->method('getCcTypeLabelMap')->willReturn(self::$baseCardTypes);
 }