예제 #1
0
파일: CartTest.php 프로젝트: extcode/cart
 /**
  * @test
  */
 public function resetSameInvoiceNumberSetsInvoiceNumber()
 {
     $this->grossCart->setInvoiceNumber('ValidInvoiceNumber');
     $this->grossCart->setInvoiceNumber('ValidInvoiceNumber');
     $this->assertSame('ValidInvoiceNumber', $this->grossCart->getInvoiceNumber());
 }