1 | <?php |
||
10 | class InterestAmountCalculatorTest extends TestCase |
||
11 | { |
||
12 | /** |
||
13 | * @dataProvider loadData |
||
14 | * @param $presentValue |
||
15 | * @param $currentPeriod |
||
16 | * @param $yearlyInterestRate |
||
17 | * @param $expectedInterest |
||
18 | */ |
||
19 | public function testGetInterestAmount($presentValue, $currentPeriod, $yearlyInterestRate, $expectedInterest) |
||
27 | |||
28 | public function loadData() |
||
39 | |||
40 | } |
||
41 |