mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-07 00:31:57 +00:00
fe79f7b02c
* Fix Unintential Deprecated Calls in Tests - INFORMATION I think it's best to install these before PR #3166. There are no changes to source code, only to doc-blocks and to test members which continue to inadvertently use calls to deprecated functions. * Missed Some Deprecated Calls Fix them now.
33 lines
769 B
PHP
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';
|
|
}
|
|
}
|