Files
MarkBaker e41c4280f6 Initial creation of the version 2.0 Development branch
Start removing some of the deprecations, starting with the old Excel Function implementations.
2022-04-25 10:30:45 +02:00

33 lines
769 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
use PhpOffice\PhpSpreadsheet\Calculation\Information\Value;
use PHPUnit\Framework\TestCase;
class NTest extends TestCase
{
public function testNNoArgument(): void
{
$result = Value::asNumber();
self::assertSame(0, $result);
}
/**
* @dataProvider providerN
*
* @param mixed $expectedResult
* @param number|string $value
*/
public function testN($expectedResult, $value): void
{
$result = Value::asNumber($value);
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
}
public function providerN(): array
{
return require 'tests/data/Calculation/Information/N.php';
}
}