Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class MMultTest extends AllSetupTeardown |
||
8 | { |
||
9 | /** |
||
10 | * @dataProvider providerMMULT |
||
11 | * |
||
12 | * @param mixed $expectedResult |
||
13 | */ |
||
14 | public function testMMULT($expectedResult, ...$args): void |
||
15 | { |
||
16 | $result = MathTrig::MMULT(...$args); |
||
17 | self::assertEqualsWithDelta($expectedResult, $result, 1E-8); |
||
18 | } |
||
19 | |||
20 | public function providerMMULT() |
||
23 | } |
||
24 | |||
25 | public function testOnSpreadsheet(): void |
||
31 | } |
||
32 | } |
||
33 |