1 | <?php |
||
9 | class NumberFormatTest extends PHPUnit_Framework_TestCase |
||
10 | { |
||
11 | public function setUp() |
||
16 | |||
17 | /** |
||
18 | * @dataProvider providerNumberFormat |
||
19 | * |
||
20 | * @param mixed $expectedResult |
||
21 | */ |
||
22 | public function testFormatValueWithMask($expectedResult, ...$args) |
||
27 | |||
28 | public function providerNumberFormat() |
||
32 | |||
33 | /** |
||
34 | * @dataProvider providerNumberFormatDates |
||
35 | * |
||
36 | * @param mixed $expectedResult |
||
37 | */ |
||
38 | public function testFormatValueWithMaskDate($expectedResult, ...$args) |
||
43 | |||
44 | public function providerNumberFormatDates() |
||
48 | } |
||
49 |
This check looks for function calls that miss required arguments.