コード例 #1
0
ファイル: RemoveXAmountTest.php プロジェクト: thelia/thelia
 /**
  * @covers Thelia\Coupon\Type\RemoveXAmount::getName
  */
 public function testGetName()
 {
     $stubFacade = $this->generateFacadeStub(399, 'EUR', 'Remove X amount to total cart');
     /** @var FacadeInterface $stubFacade */
     $coupon = new RemoveXAmount($stubFacade);
     $actual = $coupon->getName();
     $expected = 'Remove X amount to total cart';
     $this->assertEquals($expected, $actual);
 }