Ejemplo n.º 1
0
 /**
  * Should be able to get the whole price formatted.
  */
 public function testFormat()
 {
     $this->price->units = 10;
     $this->price->subunits = 99;
     $this->assertEquals('£10.99', $this->price->formatted());
 }