示例#1
0
文件: CartTest.php 项目: extcode/cart
 /**
  * @test
  */
 public function resetDifferentInvoiceNumberThrowsException()
 {
     $this->grossCart->setInvoiceNumber('ValidInvoiceNumber');
     $this->setExpectedException('LogicException', 'You can not redeclare the invoice number of your cart.', 1413969712);
     $this->grossCart->setInvoiceNumber('NotValidInvoiceNumber');
 }