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