| 1 | <?php |
||
| 7 | class FactorialTest extends \PHPUnit_Framework_TestCase |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @test |
||
| 12 | * @dataProvider provideFactorialsWithResults |
||
| 13 | */ |
||
| 14 | public function factorialize_numberToFactorialize_factorizationResult(int $numberToFactorialize, int $result): void |
||
| 22 | |||
| 23 | public function provideFactorialsWithResults(): array |
||
| 35 | } |
||
| 36 |