1 | <?php |
||
8 | class CalculationTest extends \PHPUnit_Framework_TestCase |
||
9 | { |
||
10 | public function setUp() |
||
14 | |||
15 | /** |
||
16 | * @dataProvider providerBinaryComparisonOperation |
||
17 | * |
||
18 | * @param mixed $formula |
||
19 | * @param mixed $expectedResultExcel |
||
20 | * @param mixed $expectedResultOpenOffice |
||
21 | */ |
||
22 | public function testBinaryComparisonOperation($formula, $expectedResultExcel, $expectedResultOpenOffice) |
||
32 | |||
33 | public function providerBinaryComparisonOperation() |
||
37 | |||
38 | /** |
||
39 | * @dataProvider providerGetFunctions |
||
40 | * |
||
41 | * @param mixed $category |
||
42 | * @param mixed $functionCall |
||
43 | * @param mixed $argumentCount |
||
44 | */ |
||
45 | public function testGetFunctions($category, $functionCall, $argumentCount) |
||
49 | |||
50 | public function providerGetFunctions() |
||
54 | |||
55 | public function testIsImplemented() |
||
63 | } |
||
64 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.