Пример #1
0
 public function testGettingTotalPriceBeforeTax()
 {
     $order = new Order(10, array(array("name" => "hello", "price" => 100), array("second", 60), array("quantized", 120, 3), array("name" => "labelled", "price" => 200, "quantity" => 4)));
     $this->assertEquals($order->getTotalPriceBeforeTax(), 90.91 + 54.55 + 109.09 + 181.82);
 }