Ejemplo n.º 1
0
 /**
  * @return string
  */
 public function getFormattedNetIncome()
 {
     return FormatUtils::formatPrice($this->netIncome);
 }
Ejemplo n.º 2
0
 public function testFormatPriceSpecial()
 {
     $price = 40;
     $price = FormatUtils::formatPrice($price, "^");
     $this->assertEquals($price, "^40.00");
 }