| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;
- use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
- class IntTest extends AllSetupTeardown
- {
- /**
- * @dataProvider providerINT
- *
- * @param mixed $expectedResult
- * @param string $formula
- */
- public function testINT($expectedResult, $formula): void
- {
- $this->mightHaveException($expectedResult);
- $sheet = $this->getSheet();
- $sheet->setCellValue('A2', 1.3);
- $sheet->setCellValue('A3', 2.7);
- $sheet->setCellValue('A4', -3.8);
- $sheet->setCellValue('A5', -5.2);
- $sheet->getCell('A1')->setValue("=INT($formula)");
- $result = $sheet->getCell('A1')->getCalculatedValue();
- self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
- }
- public function providerINT(): array
- {
- return require 'tests/data/Calculation/MathTrig/INT.php';
- }
- /**
- * @dataProvider providerIntArray
- */
- public function testIntArray(array $expectedResult, string $array): void
- {
- $calculation = Calculation::getInstance();
- $formula = "=INT({$array})";
- $result = $calculation->_calculateFormulaValue($formula);
- self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
- }
- public function providerIntArray(): array
- {
- return [
- 'row vector' => [[[-2, 0, 0]], '{-1.5, 0, 0.3}'],
- 'column vector' => [[[-2], [0], [0]], '{-1.5; 0; 0.3}'],
- 'matrix' => [[[-2, 0], [0, 12]], '{-1.5, 0; 0.3, 12.5}'],
- ];
- }
- }
|