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