コード例 #1
0
ファイル: CartTest.php プロジェクト: extcode/cart
 /**
  * @test
  */
 public function getSubtotalNetInitiallyReturnsZero()
 {
     $this->assertSame(0.0, $this->grossCart->getSubtotalNet());
     $this->assertSame(0.0, $this->netCart->getSubtotalNet());
 }