Exemplo n.º 1
0
 /**
  * @dataProvider formatProvider
  */
 public function testFormat($input, $output)
 {
     $num = new fNumber($input);
     $this->assertSame($output, $num->format());
 }
Exemplo n.º 2
0
 /**
  * @dataProvider formatProvider
  */
 public function testFormat($input, $remove_zero_fraction, $output)
 {
     $num = new fNumber($input);
     $this->assertSame($output, $num->format($remove_zero_fraction));
 }