コード例 #1
0
ファイル: AmountTest.php プロジェクト: hyperunknown/amount
 /**
  * @dataProvider allocateProvider
  */
 public function testAllocate(Amount $amount, $precision, array $ratios, array $result)
 {
     $this->assertEquals($result, $amount->allocate($ratios, $precision));
 }