Ejemplo n.º 1
0
 /**
  * Returns profit margin in a percentage
  *
  * @return string
  */
 public function getProfitMarginPercentage()
 {
     return FormatUtils::formatPercentage($this->getProfitMargin());
 }
Ejemplo n.º 2
0
 public function testFormatPercentage()
 {
     $percent = 0.4;
     $percent = FormatUtils::formatPercentage($percent);
     $this->assertEquals($percent, "40.00%");
 }