Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/PiTest.php
2022-03-27 21:01:59 +02:00

14 lines
334 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;
class PiTest extends AllSetupTeardown
{
public function testPI(): void
{
$sheet = $this->getSheet();
$sheet->getCell('A1')->setValue('=PI()');
self::assertEquals(M_PI, $sheet->getCell('A1')->getCalculatedValue());
}
}