| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;
- use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
- class ArabicTest extends AllSetupTeardown
- {
- /**
- * @dataProvider providerARABIC
- *
- * @param mixed $expectedResult
- * @param string $romanNumeral
- */
- public function testARABIC($expectedResult, $romanNumeral): void
- {
- $this->mightHaveException($expectedResult);
- $sheet = $this->getSheet();
- $sheet->getCell('A1')->setValue($romanNumeral);
- $sheet->getCell('B1')->setValue('=ARABIC(A1)');
- $result = $sheet->getCell('B1')->getCalculatedValue();
- self::assertSame($expectedResult, $result);
- }
- public function providerARABIC(): array
- {
- return require 'tests/data/Calculation/MathTrig/ARABIC.php';
- }
- /**
- * @dataProvider providerArabicArray
- */
- public function testArabicArray(array $expectedResult, string $array): void
- {
- $calculation = Calculation::getInstance();
- $formula = "=ARABIC({$array})";
- $result = $calculation->_calculateFormulaValue($formula);
- self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
- }
- public function providerArabicArray(): array
- {
- return [
- 'row vector' => [[[49, 2022, 499]], '{"XLIX", "MMXXII", "VDIV"}'],
- 'column vector' => [[[49], [2022], [499]], '{"XLIX"; "MMXXII"; "VDIV"}'],
- 'matrix' => [[[49, 2022], [-499, 499]], '{"XLIX", "MMXXII"; "-ID", "VDIV"}'],
- ];
- }
- }
|