Exemplo n.º 1
0
 public function testFormatPrice()
 {
     $price = 4;
     $display = "\$3";
     $this->itemPriceRenderer->expects($this->once())->method('formatPrice')->with($price)->will($this->returnValue($display));
     $this->assertEquals($display, $this->renderer->formatPrice($price));
 }