示例#1
0
 /**
  * @dataProvider roundProvider
  */
 public function testRound($input, $scale, $output)
 {
     $num = new fNumber($input);
     $this->assertSame($output, $num->round($scale)->__toString());
 }