示例#1
0
文件: CartTest.php 项目: extcode/cart
 /**
  * @test
  */
 public function getSubtotalGrossInitiallyReturnsZero()
 {
     $this->assertSame(0.0, $this->grossCart->getSubtotalGross());
     $this->assertSame(0.0, $this->netCart->getSubtotalGross());
 }