mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-26 23:38:35 +00:00
35b65bef8c
* First steps toward array-enabling the information functions Also includes moving unit tests out from Functions and into a separate, dedicated Information folder * Resolve issue with IF(), branch pruning and calculation cache (ensure that we don't convert the if condition to a bool before we've tested to see if it evaluates to an error) More refactoring
33 lines
755 B
PHP
33 lines
755 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class NTest extends TestCase
|
|
{
|
|
public function testNNoArgument(): void
|
|
{
|
|
$result = Functions::n();
|
|
self::assertSame(0, $result);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerN
|
|
*
|
|
* @param mixed $expectedResult
|
|
* @param number|string $value
|
|
*/
|
|
public function testN($expectedResult, $value): void
|
|
{
|
|
$result = Functions::n($value);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
|
|
}
|
|
|
|
public function providerN(): array
|
|
{
|
|
return require 'tests/data/Calculation/Information/N.php';
|
|
}
|
|
}
|