Example #1
0
 public function testGetSinglePrice()
 {
     $item = new CartItem();
     $item->price = 10.0;
     $item->tax = 5.0;
     $price = $item->getSinglePrice();
     $this->assertEquals(15.0, $price);
     $this->assertTrue(is_float($price));
 }